Remove redundant use of public modifier.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543268 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-11-19 00:49:59 +00:00
parent e7c8eaeb22
commit 5bef000847
1 changed files with 3 additions and 3 deletions

View File

@ -428,7 +428,7 @@ public class CompositeCollection<E> implements Collection<E>, Serializable {
* @throws NullPointerException if the object cannot be added because its null * @throws NullPointerException if the object cannot be added because its null
* @throws IllegalArgumentException if the object cannot be added * @throws IllegalArgumentException if the object cannot be added
*/ */
public boolean add(CompositeCollection<E> composite, List<Collection<E>> collections, E obj); boolean add(CompositeCollection<E> composite, List<Collection<E>> collections, E obj);
/** /**
* Called when a collection is to be added to the composite. * Called when a collection is to be added to the composite.
@ -442,7 +442,7 @@ public class CompositeCollection<E> implements Collection<E>, Serializable {
* @throws NullPointerException if the object cannot be added because its null * @throws NullPointerException if the object cannot be added because its null
* @throws IllegalArgumentException if the object cannot be added * @throws IllegalArgumentException if the object cannot be added
*/ */
public boolean addAll(CompositeCollection<E> composite, boolean addAll(CompositeCollection<E> composite,
List<Collection<E>> collections, List<Collection<E>> collections,
Collection<? extends E> coll); Collection<? extends E> coll);
@ -458,7 +458,7 @@ public class CompositeCollection<E> implements Collection<E>, Serializable {
* @throws NullPointerException if the object cannot be removed because its null * @throws NullPointerException if the object cannot be removed because its null
* @throws IllegalArgumentException if the object cannot be removed * @throws IllegalArgumentException if the object cannot be removed
*/ */
public boolean remove(CompositeCollection<E> composite, boolean remove(CompositeCollection<E> composite,
List<Collection<E>> collections, List<Collection<E>> collections,
Object obj); Object obj);