Redundant use of public modifier.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543259 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-11-19 00:47:07 +00:00
parent e32f477085
commit 7419cdb1fb
1 changed files with 4 additions and 4 deletions

View File

@ -44,7 +44,7 @@ public interface OrderedMap<K, V> extends IterableMap<K, V> {
* @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> extends IterableMap<K, V> {
* @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> extends IterableMap<K, V> {
* @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> extends IterableMap<K, V> {
* @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);
}