You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/11/19 01:40:27 UTC

svn commit: r1543250 - /commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/PredicatedQueueTest.java

Author: ggregory
Date: Tue Nov 19 00:40:27 2013
New Revision: 1543250

URL: http://svn.apache.org/r1543250
Log:
Unnecessary qualified name.

Modified:
    commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/PredicatedQueueTest.java

Modified: commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/PredicatedQueueTest.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/PredicatedQueueTest.java?rev=1543250&r1=1543249&r2=1543250&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/PredicatedQueueTest.java (original)
+++ commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/queue/PredicatedQueueTest.java Tue Nov 19 00:40:27 2013
@@ -67,7 +67,7 @@ public class PredicatedQueueTest<E> exte
     @Override
     public Collection<E> makeConfirmedFullCollection() {
         final List<E> list = new LinkedList<E>();
-        list.addAll(java.util.Arrays.asList(getFullElements()));
+        list.addAll(Arrays.asList(getFullElements()));
         return list;
     }