We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f330859 commit c5cf7f7Copy full SHA for c5cf7f7
1 file changed
commons-rng-core/src/test/java/org/apache/commons/rng/core/source32/IntJumpDistancesTest.java
@@ -60,7 +60,6 @@ void testWriteUnsignedInteger(double x) {
60
final int[] expected = toIntArray(x);
61
// Result array is assumed to be correct length but at least 2
62
int[] actual = new int[Math.max(2, 1 + Math.getExponent(x) / 32)];
63
- //int[] actual = new int[Math.max(2, expected.length)];
64
IntJumpDistances.writeUnsignedInteger(x, actual);
65
// Trailing zeros should be unwritten
66
if (actual.length > expected.length) {
0 commit comments