From 67ce6b98534a4e2bca3d19d07e77f90de23ec5c9 Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Wed, 31 Mar 2004 23:13:50 +0000 Subject: [PATCH] Add @since tag git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131616 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/collections/CollectionUtils.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/java/org/apache/commons/collections/CollectionUtils.java b/src/java/org/apache/commons/collections/CollectionUtils.java index 183ec4ce1..84e9112f2 100644 --- a/src/java/org/apache/commons/collections/CollectionUtils.java +++ b/src/java/org/apache/commons/collections/CollectionUtils.java @@ -37,7 +37,7 @@ import org.apache.commons.collections.collection.UnmodifiableCollection; * Provides utility methods and decorators for {@link Collection} instances. * * @since Commons Collections 1.0 - * @version $Revision: 1.57 $ $Date: 2004/03/31 21:43:27 $ + * @version $Revision: 1.58 $ $Date: 2004/03/31 23:13:50 $ * * @author Rodney Waldhoff * @author Paul Jack @@ -860,6 +860,7 @@ public class CollectionUtils { * @param object the object to get the size of * @return the size of the specified collection * @throws IllegalArgumentException thrown if object is not recognised or null + * @since Commons Collections 3.1 */ public static int size(Object object) { int total = 0;