Removed spurious @Override.

As the method simply implements an interface and as we are still
targeting Java 1.5, the @Override annotation should not be there.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1521774 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2013-09-11 09:57:29 +00:00
parent f2b1cf5e5d
commit ec4b45c342
1 changed files with 0 additions and 1 deletions

View File

@ -129,7 +129,6 @@ public class Combinations implements Iterable<int[]> {
}
/** {@inheritDoc} */
@Override
public Iterator<int[]> iterator() {
if (k == 0 ||
k == n) {