MATH-560
Constructors are not going to be removed in the 3.0 release. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1157395 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8a8d19b191
commit
3ff4165fc1
|
@ -47,7 +47,6 @@ public class BisectionSolver extends UnivariateRealSolverImpl {
|
|||
|
||||
/**
|
||||
* Construct a solver.
|
||||
*
|
||||
*/
|
||||
public BisectionSolver() {
|
||||
super(100, 1E-6);
|
||||
|
|
|
@ -64,9 +64,7 @@ public class BrentSolver extends UnivariateRealSolverImpl {
|
|||
|
||||
/**
|
||||
* Construct a solver with default properties.
|
||||
* @deprecated in 2.2 (to be removed in 3.0).
|
||||
*/
|
||||
@Deprecated
|
||||
public BrentSolver() {
|
||||
super(DEFAULT_MAXIMUM_ITERATIONS, DEFAULT_ABSOLUTE_ACCURACY);
|
||||
}
|
||||
|
|
|
@ -68,9 +68,7 @@ public class LaguerreSolver extends UnivariateRealSolverImpl {
|
|||
|
||||
/**
|
||||
* Construct a solver.
|
||||
* @deprecated in 2.2 (to be removed in 3.0)
|
||||
*/
|
||||
@Deprecated
|
||||
public LaguerreSolver() {
|
||||
super(100, 1E-6);
|
||||
p = null;
|
||||
|
|
|
@ -54,9 +54,7 @@ public class MullerSolver extends UnivariateRealSolverImpl {
|
|||
|
||||
/**
|
||||
* Construct a solver.
|
||||
* @deprecated in 2.2 (to be removed in 3.0).
|
||||
*/
|
||||
@Deprecated
|
||||
public MullerSolver() {
|
||||
super(100, 1E-6);
|
||||
}
|
||||
|
|
|
@ -50,9 +50,7 @@ public class NewtonSolver extends UnivariateRealSolverImpl {
|
|||
|
||||
/**
|
||||
* Construct a solver.
|
||||
* @deprecated in 2.2 (to be removed in 3.0).
|
||||
*/
|
||||
@Deprecated
|
||||
public NewtonSolver() {
|
||||
super(100, 1E-6);
|
||||
}
|
||||
|
|
|
@ -53,9 +53,7 @@ public class RiddersSolver extends UnivariateRealSolverImpl {
|
|||
|
||||
/**
|
||||
* Construct a solver.
|
||||
* @deprecated in 2.2
|
||||
*/
|
||||
@Deprecated
|
||||
public RiddersSolver() {
|
||||
super(100, 1E-6);
|
||||
}
|
||||
|
|
|
@ -58,9 +58,7 @@ public class SecantSolver extends UnivariateRealSolverImpl {
|
|||
|
||||
/**
|
||||
* Construct a solver.
|
||||
* @deprecated in 2.2 (to be removed in 3.0).
|
||||
*/
|
||||
@Deprecated
|
||||
public SecantSolver() {
|
||||
super(100, 1E-6);
|
||||
}
|
||||
|
|
|
@ -51,6 +51,12 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
with a new-line in the release notes. (These spaces are ignored when displaying HTML).
|
||||
If the output is not quite correct, check for invisible trailing spaces!
|
||||
-->
|
||||
<release version="2.2.1" date="TBD" description="TBD">
|
||||
<action dev="erans" type="fix" issue="MATH-560">
|
||||
Removed unwarranted deprecated tags.
|
||||
</action>
|
||||
</release>
|
||||
|
||||
<release version="2.2" date="2011-03-02" description="
|
||||
This is primarily a maintenance release, but it also includes new features and enhancements.
|
||||
|
||||
|
|
Loading…
Reference in New Issue