You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2010/10/18 17:37:22 UTC

svn commit: r1023857 - /commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java

Author: sebb
Date: Mon Oct 18 15:37:22 2010
New Revision: 1023857

URL: http://svn.apache.org/viewvc?rev=1023857&view=rev
Log:
Don't warn about boxing for test class

Modified:
    commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java

Modified: commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java?rev=1023857&r1=1023856&r2=1023857&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java (original)
+++ commons/proper/collections/trunk/src/test/org/apache/commons/collections/TestIndexedCollection.java Mon Oct 18 15:37:22 2010
@@ -23,6 +23,7 @@ import static junit.framework.Assert.ass
 import org.junit.Before;
 import org.junit.Test;
 
+@SuppressWarnings("boxing")
 public class TestIndexedCollection extends AbstractDecoratedCollectionTest<String> {
     private IndexedCollection<Integer, String> indexed;