Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 39214 invoked from network); 20 Feb 2011 20:08:36 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 20 Feb 2011 20:08:36 -0000 Received: (qmail 26823 invoked by uid 500); 20 Feb 2011 20:08:35 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 26731 invoked by uid 500); 20 Feb 2011 20:08:34 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 26723 invoked by uid 99); 20 Feb 2011 20:08:34 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Feb 2011 20:08:34 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 20 Feb 2011 20:08:32 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id E971B2388A39; Sun, 20 Feb 2011 20:08:11 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1072704 - /commons/proper/codec/trunk/src/test/org/apache/commons/codec/binary/Base32Test.java Date: Sun, 20 Feb 2011 20:08:11 -0000 To: commits@commons.apache.org From: ggregory@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110220200811.E971B2388A39@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org 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(); }