Removed JDK 1.5-incompatible annotations.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1039507 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2010-11-26 18:48:44 +00:00
parent f101eb4c2a
commit da07b0aed6
1 changed files with 0 additions and 2 deletions

View File

@ -493,13 +493,11 @@ public abstract class AbstractRealVector implements RealVector {
}
/** {@inheritDoc} */
@Override
public RealVector map(UnivariateRealFunction function) {
return copy().mapToSelf(function);
}
/** {@inheritDoc} */
@Override
public RealVector mapToSelf(UnivariateRealFunction function) {
Iterator<Entry> it = (function.value(0) == 0) ? sparseIterator() : iterator();
Entry e;