Skip to content

Commit e323dd2

Browse files
committed
minor refactoring
1 parent 7284b78 commit e323dd2

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

jbbp/src/test/java/com/igormaznitsa/jbbp/io/JBBPBitOrderTest.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,6 @@ void testBitWriteRead(final JBBPBitOrder bitOrder) throws Exception {
3838
while (bitsLeft > 0) {
3939
final int portion = Math.min(bitsLeft, rnd.nextInt(8) + 1);
4040
bitsLeft -= portion;
41-
42-
final JBBPBitNumber bitNumber = JBBPBitNumber.decode(portion);
43-
4441
bitOutputStream.writeBits(acc, JBBPBitNumber.decode(portion));
4542
acc >>>= portion;
4643
portions.write(portion);

0 commit comments

Comments
 (0)