COLLECTIONS-306. Added @since.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1127125 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Brent Worden 2011-05-24 16:12:00 +00:00
parent 99be993a40
commit 000e2fed2d
1 changed files with 1 additions and 0 deletions

View File

@ -252,6 +252,7 @@ public class CollectionUtils {
* @param <O> the generic type that is able to represent the types contained * @param <O> the generic type that is able to represent the types contained
* in both input collections. * in both input collections.
* @return a new collection with the results * @return a new collection with the results
* @since 4.0
* @see Collection#removeAll * @see Collection#removeAll
*/ */
public static <O> Collection<O> subtract(final Iterable<? extends O> a, final Iterable<? extends O> b, final Predicate<O> p) { public static <O> Collection<O> subtract(final Iterable<? extends O> a, final Iterable<? extends O> b, final Predicate<O> p) {