Unnecessary qualified name.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543250 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-11-19 00:40:27 +00:00
parent bae09b4838
commit 4d8331ef9c
1 changed files with 1 additions and 1 deletions

View File

@ -67,7 +67,7 @@ public class PredicatedQueueTest<E> extends AbstractQueueTest<E> {
@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;
}