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:54:31 UTC

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

Author: ggregory
Date: Tue Nov 19 00:54:31 2013
New Revision: 1543279

URL: http://svn.apache.org/r1543279
Log:
Remove redundant use of public modifier.

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

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Trie.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Trie.java?rev=1543279&r1=1543278&r2=1543279&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Trie.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/Trie.java Tue Nov 19 00:54:31 2013
@@ -42,6 +42,6 @@ public interface Trie<K, V> extends Iter
      * @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);
 
 }