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:45:25 UTC

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

Author: ggregory
Date: Tue Nov 19 00:45:24 2013
New Revision: 1543255

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

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

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/SortedBidiMap.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/SortedBidiMap.java?rev=1543255&r1=1543254&r2=1543255&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/SortedBidiMap.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/SortedBidiMap.java Tue Nov 19 00:45:24 2013
@@ -48,11 +48,11 @@ public interface SortedBidiMap<K, V> ext
      *
      * @return an inverted bidirectional map
      */
-    public SortedBidiMap<V, K> inverseBidiMap();
+    SortedBidiMap<V, K> inverseBidiMap();
 
     /**
      * Get the comparator used for the values in the value-to-key map aspect.
      * @return Comparator<? super V>
      */
-    public Comparator<? super V> valueComparator();
+    Comparator<? super V> valueComparator();
 }