We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7284b78 commit e323dd2Copy full SHA for e323dd2
jbbp/src/test/java/com/igormaznitsa/jbbp/io/JBBPBitOrderTest.java
@@ -38,9 +38,6 @@ void testBitWriteRead(final JBBPBitOrder bitOrder) throws Exception {
38
while (bitsLeft > 0) {
39
final int portion = Math.min(bitsLeft, rnd.nextInt(8) + 1);
40
bitsLeft -= portion;
41
-
42
- final JBBPBitNumber bitNumber = JBBPBitNumber.decode(portion);
43
44
bitOutputStream.writeBits(acc, JBBPBitNumber.decode(portion));
45
acc >>>= portion;
46
portions.write(portion);
0 commit comments