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:
parent
bb7ddb5396
commit
f188400b22
|
@ -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;
|
||||
|
||||
/**
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue