From f2b7804f1e9933a67df3c7ff78841e9eb6cd7e1f Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Mon, 12 Jan 2004 21:41:41 +0000 Subject: [PATCH] Javadoc tidy git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/collections/trunk@131547 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/commons/collections/Bag.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/java/org/apache/commons/collections/Bag.java b/src/java/org/apache/commons/collections/Bag.java index 1bbd67c10..6cba662a3 100644 --- a/src/java/org/apache/commons/collections/Bag.java +++ b/src/java/org/apache/commons/collections/Bag.java @@ -1,5 +1,5 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/Bag.java,v 1.13 2004/01/05 22:46:33 scolebourne Exp $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/Bag.java,v 1.14 2004/01/12 21:41:41 scolebourne Exp $ * ==================================================================== * * The Apache Software License, Version 1.1 @@ -62,7 +62,7 @@ import java.util.Iterator; import java.util.Set; /** - * A {@link Collection} that counts the number of times an object appears in + * Defines a collection that counts the number of times an object appears in * the collection. *

* Suppose you have a Bag that contains {a, a, b, c}. @@ -70,14 +70,14 @@ import java.util.Set; * calling {@link #uniqueSet()} would return {a, b, c}. *

* Note that this interface violates the {@link Collection} contract. - * The behavior specified in many of these methods is not the same - * as the behavior specified by {@link Collection}. The noncompliant methods + * The behavior specified in many of these methods is not the same + * as the behavior specified by Collection. The noncompliant methods * are clearly marked with "(Violation)". A future - * version of this class will specify the same behavior as {@link Collection}, + * version of this class will specify the same behavior as Collection, * which unfortunately will break backwards compatibility with this version. * * @since Commons Collections 2.0 - * @version $Revision: 1.13 $ $Date: 2004/01/05 22:46:33 $ + * @version $Revision: 1.14 $ $Date: 2004/01/12 21:41:41 $ * * @author Chuck Burdick * @author Stephen Colebourne