From dc8138a8a9b022d156c4d04b2491b269661db396 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Tue, 19 Nov 2013 00:53:14 +0000 Subject: [PATCH] Remove redundant use of public modifier. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543276 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/collections4/map/CompositeMap.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/map/CompositeMap.java b/src/main/java/org/apache/commons/collections4/map/CompositeMap.java index cbb39ed48..786ef5547 100644 --- a/src/main/java/org/apache/commons/collections4/map/CompositeMap.java +++ b/src/main/java/org/apache/commons/collections4/map/CompositeMap.java @@ -499,7 +499,7 @@ public class CompositeMap extends AbstractIterableMap implements Ser * @param added the Map being added * @param intersect the intersection of the keysets of the existing and added maps */ - public void resolveCollision(CompositeMap composite, Map existing, + void resolveCollision(CompositeMap composite, Map existing, Map added, Collection intersect); /** @@ -524,7 +524,7 @@ public class CompositeMap extends AbstractIterableMap implements Ser * keys or values, and the specified key or value is * null. */ - public V put(CompositeMap map, Map[] composited, K key, V value); + V put(CompositeMap map, Map[] composited, K key, V value); /** * Called when the CompositeMap.putAll() method is invoked. @@ -542,7 +542,7 @@ public class CompositeMap extends AbstractIterableMap implements Ser * keys or values, and the specified key or value is * null. */ - public void putAll(CompositeMap map, Map[] composited, + void putAll(CompositeMap map, Map[] composited, Map mapToAdd); } }