Redundant use of public modifier.

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

View File

@ -33,6 +33,6 @@ public interface ResettableIterator<E> extends Iterator<E> {
* Resets the iterator back to the position at which the iterator * Resets the iterator back to the position at which the iterator
* was created. * was created.
*/ */
public void reset(); void reset();
} }