Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 94897 invoked from network); 7 Aug 2010 12:03:37 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 7 Aug 2010 12:03:37 -0000 Received: (qmail 36343 invoked by uid 500); 7 Aug 2010 12:03:36 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 35978 invoked by uid 500); 7 Aug 2010 12:03:33 -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 35971 invoked by uid 99); 7 Aug 2010 12:03:32 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 07 Aug 2010 12:03:32 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.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; Sat, 07 Aug 2010 12:03:31 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 68C412388A02; Sat, 7 Aug 2010 12:02:15 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r983218 - /commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/ArrayUtilsTest.java Date: Sat, 07 Aug 2010 12:02:15 -0000 To: commits@commons.apache.org From: jcarman@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100807120215.68C412388A02@eris.apache.org> Author: jcarman Date: Sat Aug 7 12:02:15 2010 New Revision: 983218 URL: http://svn.apache.org/viewvc?rev=983218&view=rev Log: Reverting change that removed "superfluous" type argument. Modified: commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/ArrayUtilsTest.java Modified: commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/ArrayUtilsTest.java URL: http://svn.apache.org/viewvc/commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/ArrayUtilsTest.java?rev=983218&r1=983217&r2=983218&view=diff ============================================================================== --- commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/ArrayUtilsTest.java (original) +++ commons/proper/lang/trunk/src/test/java/org/apache/commons/lang3/ArrayUtilsTest.java Sat Aug 7 12:02:15 2010 @@ -181,7 +181,7 @@ public class ArrayUtilsTest extends Test */ public void testEmptyArrayCreation() { - final String[] array = ArrayUtils.toArray(); + final String[] array = ArrayUtils.toArray(); assertEquals(0, array.length); } @@ -190,7 +190,7 @@ public class ArrayUtilsTest extends Test */ public void testIndirectEmptyArrayCreation() { - final String[] array = ArrayUtilsTest.toArrayPropagatingType(); + final String[] array = ArrayUtilsTest.toArrayPropagatingType(); assertEquals(0, array.length); }