"@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:
parent
760078b411
commit
5803f32719
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue