Skip to content

Commit 90b8a9d

Browse files
committed
fix: remove redundant main method to resolve PMD violation
1 parent 2b3f8f1 commit 90b8a9d

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/main/java/com/thealgorithms/ciphers/ElGamalCipher.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,4 @@ public BigInteger decrypt(BigInteger c1, BigInteger c2) {
3434
BigInteger sInv = s.modInverse(p);
3535
return c2.multiply(sInv).mod(p);
3636
}
37+
}

0 commit comments

Comments
 (0)