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:47:56 UTC

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

Author: ggregory
Date: Tue Nov 19 00:47:55 2013
New Revision: 1543263

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

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

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/ResettableIterator.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/ResettableIterator.java?rev=1543263&r1=1543262&r2=1543263&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/ResettableIterator.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/ResettableIterator.java Tue Nov 19 00:47:55 2013
@@ -33,6 +33,6 @@ public interface ResettableIterator<E> e
      * Resets the iterator back to the position at which the iterator
      * was created.
      */
-    public void reset();
+    void reset();
 
 }