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:48:13 UTC

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

Author: ggregory
Date: Tue Nov 19 00:48:12 2013
New Revision: 1543264

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

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

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/SortedBag.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/SortedBag.java?rev=1543264&r1=1543263&r2=1543264&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/SortedBag.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/SortedBag.java Tue Nov 19 00:48:12 2013
@@ -34,20 +34,20 @@ public interface SortedBag<E> extends Ba
      *
      * @return the comparator in use, or null if natural ordering
      */
-    public Comparator<? super E> comparator();
+    Comparator<? super E> comparator();
 
     /**
      * Returns the first (lowest) member.
      *
      * @return the first element in the sorted bag
      */
-    public E first();
+    E first();
 
     /**
      * Returns the last (highest) member.
      *
      * @return the last element in the sorted bag
      */
-    public E last();
+    E last();
 
 }