Remove @Override annotation on interface.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1669139 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2015-03-25 16:01:54 +00:00
parent 2ff3914b33
commit ae97a498d1
1 changed files with 0 additions and 1 deletions

View File

@ -77,7 +77,6 @@ public class TreeBagTest<T> extends AbstractSortedBagTest<T> {
}
final Bag<String> bag2 = new TreeBag<String>(new Comparator<String>() {
@Override
public int compare(String o1, String o2) {
return o1.compareTo(o2);
}