mirror of
https://github.com/TheAlgorithms/Java.git
synced 2025-07-23 04:20:16 +08:00
Remove unnecessary code (#4141)
This commit is contained in:
@ -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++) {
|
||||
|
@ -160,7 +160,6 @@ public class HillCipher {
|
||||
System.out.println(
|
||||
"Invalid key, as determinant = 0. Program Terminated"
|
||||
);
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user