Remove redundant use of public modifier.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543279 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-11-19 00:54:31 +00:00
parent 84daf6aee0
commit 6df343df26
1 changed files with 1 additions and 1 deletions

View File

@ -42,6 +42,6 @@ public interface Trie<K, V> extends IterableSortedMap<K, V> {
* @return a {@link SortedMap} view of this {@link Trie} with all elements whose
* key is prefixed by the search key
*/
public SortedMap<K, V> prefixMap(K key);
SortedMap<K, V> prefixMap(K key);
}