"@Override" not allowed there in Java 5.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1162522 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2011-08-28 13:43:25 +00:00
parent 760078b411
commit 5803f32719
1 changed files with 0 additions and 6 deletions

View File

@ -1166,20 +1166,17 @@ public abstract class RealVector {
private final UnmodifiableEntry e = new UnmodifiableEntry();
/** {@inheritDoc} */
@Override
public boolean hasNext() {
return i.hasNext();
}
/** {@inheritDoc} */
@Override
public Entry next() {
e.setIndex(i.next().getIndex());
return e;
}
/** {@inheritDoc} */
@Override
public void remove() {
throw new MathUnsupportedOperationException();
}
@ -1196,20 +1193,17 @@ public abstract class RealVector {
private final UnmodifiableEntry e = new UnmodifiableEntry();
/** {@inheritDoc} */
@Override
public boolean hasNext() {
return i.hasNext();
}
/** {@inheritDoc} */
@Override
public Entry next() {
e.setIndex(i.next().getIndex());
return e;
}
/** {@inheritDoc} */
@Override
public void remove() {
throw new MathUnsupportedOperationException();
}