Remove unused variables in the testMixedArray method.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137264 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2003-03-20 05:41:23 +00:00
parent 2ba51c13fb
commit 1a3ba6816d
1 changed files with 2 additions and 3 deletions

View File

@ -62,7 +62,8 @@
*
* @author <a href="mailto:sdowney@panix.com">Steve Downey</a>
* @author <a href="mailto:scolebourne@joda.org">Stephen Colebourne</a>
* @version $Id: EqualsBuilderTest.java,v 1.3 2003/01/19 17:35:20 scolebourne Exp $
* @author <a href="mailto:ggregory@seagullsw.com">Gary Gregory</a>
* @version $Id: EqualsBuilderTest.java,v 1.4 2003/03/20 05:41:23 ggregory Exp $
*/
public class EqualsBuilderTest extends TestCase {
@ -720,8 +721,6 @@ public void testMixedArray() {
array1[i] = new long[2];
array2[i] = new long[2];
for (int j = 0; j < 2; ++j) {
TestObject obj1 = new TestObject((i + 1) * (j + 1));
TestObject obj2 = new TestObject((i + 1) * (j + 1));
((long[]) array1[i])[j] = (i + 1) * (j + 1);
((long[]) array2[i])[j] = (i + 1) * (j + 1);
}