Skip to content

Commit a7cef1b

Browse files
committed
The value of the local variable bytes is not used.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/codec/trunk@1072704 13f79535-47bb-0310-9956-ffa450edef68
1 parent 20560e4 commit a7cef1b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/test/org/apache/commons/codec/binary/Base32Test.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ public void testSingleCharEncoding() {
8787
}
8888
codec.encode(unencoded, 0, -1);
8989
byte singly[] = new byte[allInOne.length];
90-
int bytes = codec.readResults(singly, 0, 100);
90+
codec.readResults(singly, 0, 100);
9191
if (!Arrays.equals(allInOne, singly)){
9292
fail();
9393
}

0 commit comments

Comments
 (0)