We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99f371b commit 07022c4Copy full SHA for 07022c4
2 files changed
src/main/java/com/thealgorithms/bitmanipulation/PowerOfFour.java
@@ -5,9 +5,9 @@
5
*/
6
public final class PowerOfFour {
7
8
- // Private constructor to prevent instantiation
+ /** Private constructor to prevent instantiation. */
9
private PowerOfFour() {
10
- throw new AssertionError("Cannot instantiate utility class");
+ throw new AssertionError("Cannot instantiate utility class.");
11
}
12
13
/**
src/test/java/com/thealgorithms/bitmanipulation/PowerOfFourTest.java
@@ -4,7 +4,7 @@
4
import org.junit.jupiter.api.Test;
- * Unit tests for PowerOfFour class.
+ * Unit tests for {@link PowerOfFour}.
public final class PowerOfFourTest {
@@ -30,4 +30,3 @@ void testNegativeNumbers() {
30
Assertions.assertFalse(PowerOfFour.isPowerOfFour(-16));
31
32
33
-
0 commit comments