Fix comments.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1684859 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2015-06-11 11:57:24 +00:00
parent bb7ddb5396
commit f188400b22
2 changed files with 2 additions and 2 deletions

View File

@ -49,7 +49,7 @@ public abstract class AbstractMapBag<E> implements Bag<E> {
private int size;
/** The modification count for fail fast iterators */
private transient int modCount;
/** The modification count for fail fast iterators */
/** Unique view of the elements */
private transient Set<E> uniqueSet;
/**

View File

@ -104,7 +104,7 @@ public final class CollectionBag<E> extends AbstractBagDecorator<E> {
* every object contained in this object.
*
* @param coll the collection to check against
* @return <code>true</code> if the Bag contains at least on of every object in the collection
* @return <code>true</code> if the Bag contains at least one of every object in the collection
*/
@Override
public boolean containsAll(final Collection<?> coll) {