Author: ggregory
Date: Thu Oct 30 00:22:49 2014
New Revision: 1635353

URL: http://svn.apache.org/r1635353
Log:
The static method transformedSet(Set<Object>, Transformer<? super Object,? 
extends Object>) from the type TransformedSet should be accessed directly.

Modified:
    
commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/set/TransformedSortedSetTest.java

Modified: 
commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/set/TransformedSortedSetTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/set/TransformedSortedSetTest.java?rev=1635353&r1=1635352&r2=1635353&view=diff
==============================================================================
--- 
commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/set/TransformedSortedSetTest.java
 (original)
+++ 
commons/proper/collections/trunk/src/test/java/org/apache/commons/collections4/set/TransformedSortedSetTest.java
 Thu Oct 30 00:22:49 2014
@@ -80,7 +80,7 @@ public class TransformedSortedSetTest<E>
         final Set<Object> originalSet = new TreeSet<Object>();
         final Object[] els = new Object[] {"1", "3", "5", "7", "2", "4", "6"};
         Collections.addAll(originalSet, els);
-        final Set<?> set = TransformedSortedSet.transformedSet(originalSet, 
TransformedCollectionTest.STRING_TO_INTEGER_TRANSFORMER);
+        final Set<?> set = TransformedSet.transformedSet(originalSet, 
TransformedCollectionTest.STRING_TO_INTEGER_TRANSFORMER);
         assertEquals(els.length, set.size());
         for (final Object el : els) {
             assertEquals(true, set.contains(Integer.valueOf((String) el)));


Reply via email to