Cannot use inheritDoc if there is nothing to inherit from

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1065763 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-01-31 20:42:00 +00:00
parent a64940bdc2
commit f922f947ee
4 changed files with 0 additions and 4 deletions

View File

@ -153,7 +153,6 @@ public class LegendreGaussIntegrator extends UnivariateRealIntegratorImpl {
}
/** {@inheritDoc} */
@Deprecated
public double integrate(final double min, final double max)
throws ConvergenceException, MathUserException, IllegalArgumentException {

View File

@ -57,7 +57,6 @@ public class RombergIntegrator extends UnivariateRealIntegratorImpl {
super(32);
}
/** {@inheritDoc} */
@Deprecated
public double integrate(final double min, final double max)
throws MaxCountExceededException, MathUserException, IllegalArgumentException {

View File

@ -56,7 +56,6 @@ public class SimpsonIntegrator extends UnivariateRealIntegratorImpl {
super(64);
}
/** {@inheritDoc} */
@Deprecated
public double integrate(final double min, final double max)
throws MaxCountExceededException, MathUserException, IllegalArgumentException {

View File

@ -96,7 +96,6 @@ public class TrapezoidIntegrator extends UnivariateRealIntegratorImpl {
}
}
/** {@inheritDoc} */
@Deprecated
public double integrate(final double min, final double max)
throws MaxCountExceededException, MathUserException, IllegalArgumentException {