Remove redundant use of public modifier.

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

View File

@ -47,6 +47,6 @@ public interface ReplacementsHandler<T> {
* @param from sub-sequence of objects coming from the first sequence
* @param to sub-sequence of objects coming from the second sequence
*/
public void handleReplacement(int skipped, List<T> from, List<T> to);
void handleReplacement(int skipped, List<T> from, List<T> to);
}