You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/11/05 13:25:43 UTC

svn commit: r1538966 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/CollectionUtils.java

Author: tn
Date: Tue Nov  5 12:25:43 2013
New Revision: 1538966

URL: http://svn.apache.org/r1538966
Log:
Add missing since tag.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/CollectionUtils.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/CollectionUtils.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/CollectionUtils.java?rev=1538966&r1=1538965&r2=1538966&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/CollectionUtils.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/CollectionUtils.java Tue Nov  5 12:25:43 2013
@@ -867,6 +867,7 @@ public class CollectionUtils {
      * @param predicate  the predicate to use, may be null
      * @return true if every element of the collection matches the predicate or if the
      * collection is empty, false otherwise
+     * @since 4.0
      */
     public static <C> boolean matchesAll(final Iterable<C> input, final Predicate<? super C> predicate) {
         if (predicate == null) {