From 7419cdb1fbff1096edca78bc5db34f7fdb3b7342 Mon Sep 17 00:00:00 2001 From: "Gary D. Gregory" Date: Tue, 19 Nov 2013 00:47:07 +0000 Subject: [PATCH] Redundant use of public modifier. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543259 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/commons/collections4/OrderedMap.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/OrderedMap.java b/src/main/java/org/apache/commons/collections4/OrderedMap.java index 47a18b295..6fedf893b 100644 --- a/src/main/java/org/apache/commons/collections4/OrderedMap.java +++ b/src/main/java/org/apache/commons/collections4/OrderedMap.java @@ -44,7 +44,7 @@ public interface OrderedMap extends IterableMap { * @return the first key currently in this map * @throws java.util.NoSuchElementException if this map is empty */ - public K firstKey(); + K firstKey(); /** * Gets the last key currently in this map. @@ -52,7 +52,7 @@ public interface OrderedMap extends IterableMap { * @return the last key currently in this map * @throws java.util.NoSuchElementException if this map is empty */ - public K lastKey(); + K lastKey(); /** * Gets the next key after the one specified. @@ -60,7 +60,7 @@ public interface OrderedMap extends IterableMap { * @param key the key to search for next from * @return the next key, null if no match or at end */ - public K nextKey(K key); + K nextKey(K key); /** * Gets the previous key before the one specified. @@ -68,6 +68,6 @@ public interface OrderedMap extends IterableMap { * @param key the key to search for previous from * @return the previous key, null if no match or at start */ - public K previousKey(K key); + K previousKey(K key); }