Author: brentworden Date: Tue May 24 16:12:00 2011 New Revision: 1127125 URL: http://svn.apache.org/viewvc?rev=1127125&view=rev Log: COLLECTIONS-306. Added @since.
Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/CollectionUtils.java Modified: commons/proper/collections/trunk/src/java/org/apache/commons/collections/CollectionUtils.java URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/java/org/apache/commons/collections/CollectionUtils.java?rev=1127125&r1=1127124&r2=1127125&view=diff ============================================================================== --- commons/proper/collections/trunk/src/java/org/apache/commons/collections/CollectionUtils.java (original) +++ commons/proper/collections/trunk/src/java/org/apache/commons/collections/CollectionUtils.java Tue May 24 16:12:00 2011 @@ -252,6 +252,7 @@ public class CollectionUtils { * @param <O> the generic type that is able to represent the types contained * in both input collections. * @return a new collection with the results + * @since 4.0 * @see Collection#removeAll */ public static <O> Collection<O> subtract(final Iterable<? extends O> a, final Iterable<? extends O> b, final Predicate<O> p) {