Author: ggregory
Date: Tue Nov 19 00:52:40 2013
New Revision: 1543273
URL: http://svn.apache.org/r1543273
Log:
Remove redundant use of public modifier.
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java?rev=1543273&r1=1543272&r2=1543273&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/set/CompositeSet.java
Tue Nov 19 00:52:40 2013
@@ -460,7 +460,7 @@ public class CompositeSet<E> implements
* @throws NullPointerException if the object cannot be added because
its null
* @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.
@@ -474,7 +474,7 @@ public class CompositeSet<E> implements
* @throws NullPointerException if the object cannot be added because
its null
* @throws IllegalArgumentException if the object cannot be added
*/
- public boolean addAll(CompositeSet<E> composite,
+ boolean addAll(CompositeSet<E> composite,
List<Set<E>> sets,
Collection<? extends E> coll);
@@ -490,7 +490,7 @@ public class CompositeSet<E> implements
* @param added the Set being added to the composite
* @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> added,
Collection<E> intersects);