Author: ggregory
Date: Tue Nov 19 00:49:59 2013
New Revision: 1543268
URL: http://svn.apache.org/r1543268
Log:
Remove redundant use of public modifier.
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/collection/CompositeCollection.java
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/collection/CompositeCollection.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/collection/CompositeCollection.java?rev=1543268&r1=1543267&r2=1543268&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/collection/CompositeCollection.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/collection/CompositeCollection.java
Tue Nov 19 00:49:59 2013
@@ -428,7 +428,7 @@ public class CompositeCollection<E> impl
* @throws NullPointerException if the object cannot be added because
its null
* @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.
@@ -442,7 +442,7 @@ public class CompositeCollection<E> impl
* @throws NullPointerException if the object cannot be added because
its null
* @throws IllegalArgumentException if the object cannot be added
*/
- public boolean addAll(CompositeCollection<E> composite,
+ boolean addAll(CompositeCollection<E> composite,
List<Collection<E>> collections,
Collection<? extends E> coll);
@@ -458,7 +458,7 @@ public class CompositeCollection<E> impl
* @throws NullPointerException if the object cannot be removed
because its null
* @throws IllegalArgumentException if the object cannot be removed
*/
- public boolean remove(CompositeCollection<E> composite,
+ boolean remove(CompositeCollection<E> composite,
List<Collection<E>> collections,
Object obj);