You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2013/11/19 01:47:08 UTC

svn commit: r1543259 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/OrderedMap.java

Author: ggregory
Date: Tue Nov 19 00:47:07 2013
New Revision: 1543259

URL: http://svn.apache.org/r1543259
Log:
Redundant use of public modifier.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/OrderedMap.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/OrderedMap.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/OrderedMap.java?rev=1543259&r1=1543258&r2=1543259&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/OrderedMap.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/OrderedMap.java Tue Nov 19 00:47:07 2013
@@ -44,7 +44,7 @@ public interface OrderedMap<K, V> extend
      * @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<K, V> extend
      * @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<K, V> extend
      * @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<K, V> extend
      * @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);
 
 }