Skip to content

Commit eff83ce

Browse files
author
prayas7102
committed
clang format changes (removed comment)
1 parent d783782 commit eff83ce

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ public class LowestSetBit {
1010
* @return the isolated lowest set bit of n
1111
*/
1212
public static int isolateLowestSetBit(int n) {
13-
// Isolate the lowest set bit using n & -n
1413
return n & -n;
1514
}
1615
}

0 commit comments

Comments
 (0)