Author: ggregory
Date: Sun Feb 20 20:08:11 2011
New Revision: 1072704

URL: http://svn.apache.org/viewvc?rev=1072704&view=rev
Log:
The value of the local variable bytes is not used.

Modified:
    
commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/Base32Test.java

Modified: 
commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/Base32Test.java
URL: 
http://svn.apache.org/viewvc/commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/Base32Test.java?rev=1072704&r1=1072703&r2=1072704&view=diff
==============================================================================
--- 
commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/Base32Test.java
 (original)
+++ 
commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/Base32Test.java
 Sun Feb 20 20:08:11 2011
@@ -87,7 +87,7 @@ public class Base32Test extends TestCase
             }
             codec.encode(unencoded, 0, -1);
             byte singly[] = new byte[allInOne.length];
-            int bytes = codec.readResults(singly, 0, 100);
+            codec.readResults(singly, 0, 100);
             if (!Arrays.equals(allInOne, singly)){
                 fail();
             }


Reply via email to