Skip to content

Commit b98f8c2

Browse files
linter solve2
1 parent 8b5c7c7 commit b98f8c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public final static Optional<Integer> findHighestSetBit(int num) {
2424
num >>= 1;
2525
position++;
2626
}
27-
27+
2828
return Optional.of(position - 1);
2929
}
3030
}

0 commit comments

Comments
 (0)