Remove unnecessary code (#4141)

This commit is contained in:
Saurabh Rahate
2023-04-03 20:05:59 +05:30
committed by GitHub
parent 805f09850c
commit ad72c28d91
64 changed files with 125 additions and 322 deletions

View File

@ -1079,7 +1079,7 @@ public class Blowfish {
*/
private String hexToBin(String hex) {
String binary = "";
Long num;
long num;
String binary4B;
int n = hex.length();
for (int i = 0; i < n; i++) {

View File

@ -160,7 +160,6 @@ public class HillCipher {
System.out.println(
"Invalid key, as determinant = 0. Program Terminated"
);
return;
}
}