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:
parent
a64940bdc2
commit
f922f947ee
|
@ -153,7 +153,6 @@ public class LegendreGaussIntegrator extends UnivariateRealIntegratorImpl {
|
|||
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Deprecated
|
||||
public double integrate(final double min, final double max)
|
||||
throws ConvergenceException, MathUserException, IllegalArgumentException {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -96,7 +96,6 @@ public class TrapezoidIntegrator extends UnivariateRealIntegratorImpl {
|
|||
}
|
||||
}
|
||||
|
||||
/** {@inheritDoc} */
|
||||
@Deprecated
|
||||
public double integrate(final double min, final double max)
|
||||
throws MaxCountExceededException, MathUserException, IllegalArgumentException {
|
||||
|
|
Loading…
Reference in New Issue