Author: ggregory
Date: Tue Nov 19 00:53:14 2013
New Revision: 1543276
URL: http://svn.apache.org/r1543276
Log:
Remove redundant use of public modifier.
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/CompositeMap.java
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/CompositeMap.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/CompositeMap.java?rev=1543276&r1=1543275&r2=1543276&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/CompositeMap.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/map/CompositeMap.java
Tue Nov 19 00:53:14 2013
@@ -499,7 +499,7 @@ public class CompositeMap<K, V> extends
* @param added the Map being added
* @param intersect the intersection of the keysets of the existing
and added maps
*/
- public void resolveCollision(CompositeMap<K, V> composite, Map<K, V>
existing,
+ void resolveCollision(CompositeMap<K, V> composite, Map<K, V> existing,
Map<K, V> added, Collection<K> intersect);
/**
@@ -524,7 +524,7 @@ public class CompositeMap<K, V> extends
* keys or values, and the specified key or value is
* <tt>null</tt>.
*/
- public V put(CompositeMap<K, V> map, Map<K, V>[] composited, K key, V
value);
+ V put(CompositeMap<K, V> map, Map<K, V>[] composited, K key, V value);
/**
* Called when the CompositeMap.putAll() method is invoked.
@@ -542,7 +542,7 @@ public class CompositeMap<K, V> extends
* keys or values, and the specified key or value is
* <tt>null</tt>.
*/
- public void putAll(CompositeMap<K, V> map, Map<K, V>[] composited,
+ void putAll(CompositeMap<K, V> map, Map<K, V>[] composited,
Map<? extends K, ? extends V> mapToAdd);
}
}