From 99f82c97b44564474d4ef18a022c5efbd6a74c24 Mon Sep 17 00:00:00 2001 From: Thomas Neidhart Date: Tue, 5 Nov 2013 12:25:43 +0000 Subject: [PATCH] Add missing since tag. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1538966 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/commons/collections4/CollectionUtils.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/org/apache/commons/collections4/CollectionUtils.java b/src/main/java/org/apache/commons/collections4/CollectionUtils.java index 18b60bc04..f3ce5339a 100644 --- a/src/main/java/org/apache/commons/collections4/CollectionUtils.java +++ b/src/main/java/org/apache/commons/collections4/CollectionUtils.java @@ -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 boolean matchesAll(final Iterable input, final Predicate predicate) { if (predicate == null) {