Author: luc
Date: Wed Sep 11 09:57:29 2013
New Revision: 1521774
URL: http://svn.apache.org/r1521774
Log:
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.
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/Combinations.java
Modified:
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/Combinations.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/Combinations.java?rev=1521774&r1=1521773&r2=1521774&view=diff
==============================================================================
---
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/Combinations.java
(original)
+++
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/Combinations.java
Wed Sep 11 09:57:29 2013
@@ -129,7 +129,6 @@ public class Combinations implements Ite
}
/** {@inheritDoc} */
- @Override
public Iterator<int[]> iterator() {
if (k == 0 ||
k == n) {