Remove redundant use of public modifier.

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

View File

@ -460,7 +460,7 @@ public class CompositeSet<E> implements Set<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(CompositeSet<E> composite, List<Set<E>> sets, E obj); boolean add(CompositeSet<E> composite, List<Set<E>> sets, E obj);
/** /**
* Called when a collection is to be added to the composite. * Called when a collection is to be added to the composite.
@ -474,7 +474,7 @@ public class CompositeSet<E> implements Set<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(CompositeSet<E> composite, boolean addAll(CompositeSet<E> composite,
List<Set<E>> sets, List<Set<E>> sets,
Collection<? extends E> coll); Collection<? extends E> coll);
@ -490,7 +490,7 @@ public class CompositeSet<E> implements Set<E>, Serializable {
* @param added the Set being added to the composite * @param added the Set being added to the composite
* @param intersects the intersection of the existing and added sets * @param intersects the intersection of the existing and added sets
*/ */
public void resolveCollision(CompositeSet<E> comp, void resolveCollision(CompositeSet<E> comp,
Set<E> existing, Set<E> existing,
Set<E> added, Set<E> added,
Collection<E> intersects); Collection<E> intersects);