Skip to content

Commit c448ffb

Browse files
committed
Mark utility class as final to satisfy Checkstyle
1 parent 7d4de81 commit c448ffb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/maths/DiscreteLogarithmBSGS.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
*
1717
* @see <a href="https://en.wikipedia.org/wiki/Baby-step_giant-step">Baby-step giant-step algorithm</a>
1818
*/
19-
public class DiscreteLogarithmBSGS {
19+
public final class DiscreteLogarithmBSGS {
2020

2121
private DiscreteLogarithmBSGS() {
2222
throw new UnsupportedOperationException("Utility class");

0 commit comments

Comments
 (0)