Skip to content

Commit 7055acd

Browse files
marysiuniqvil02
andauthored
style: remove redundant final
Co-authored-by: Piotr Idzik <[email protected]>
1 parent 513b421 commit 7055acd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/bitmanipulation/HighestSetBit.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public final class HighestSetBit {
1212
private HighestSetBit() {
1313
}
1414

15-
public static final Optional<Integer> findHighestSetBit(int num) {
15+
public static Optional<Integer> findHighestSetBit(int num) {
1616
if (num < 0) {
1717
throw new IllegalArgumentException("Input cannot be negative");
1818
}

0 commit comments

Comments
 (0)