Cannot inherit without a parent to inherit from

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1197483 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-11-04 10:15:01 +00:00
parent 2a2a74e9d5
commit 553f0ec8d8

View File

@ -40,12 +40,10 @@ class ParameterizedWrapper implements ParameterizedODE {
this.fode = ode;
}
/** {@inheritDoc} */
public int getDimension() {
return fode.getDimension();
}
/** {@inheritDoc} */
public void computeDerivatives(double t, double[] y, double[] yDot) {
fode.computeDerivatives(t, y, yDot);
}