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:
Gilles Sadowski 2011-08-13 17:32:38 +00:00
parent 8a8d19b191
commit 3ff4165fc1
8 changed files with 6 additions and 13 deletions

View File

@ -47,7 +47,6 @@ public class BisectionSolver extends UnivariateRealSolverImpl {
/** /**
* Construct a solver. * Construct a solver.
*
*/ */
public BisectionSolver() { public BisectionSolver() {
super(100, 1E-6); super(100, 1E-6);

View File

@ -64,9 +64,7 @@ public class BrentSolver extends UnivariateRealSolverImpl {
/** /**
* Construct a solver with default properties. * Construct a solver with default properties.
* @deprecated in 2.2 (to be removed in 3.0).
*/ */
@Deprecated
public BrentSolver() { public BrentSolver() {
super(DEFAULT_MAXIMUM_ITERATIONS, DEFAULT_ABSOLUTE_ACCURACY); super(DEFAULT_MAXIMUM_ITERATIONS, DEFAULT_ABSOLUTE_ACCURACY);
} }

View File

@ -68,9 +68,7 @@ public class LaguerreSolver extends UnivariateRealSolverImpl {
/** /**
* Construct a solver. * Construct a solver.
* @deprecated in 2.2 (to be removed in 3.0)
*/ */
@Deprecated
public LaguerreSolver() { public LaguerreSolver() {
super(100, 1E-6); super(100, 1E-6);
p = null; p = null;

View File

@ -54,9 +54,7 @@ public class MullerSolver extends UnivariateRealSolverImpl {
/** /**
* Construct a solver. * Construct a solver.
* @deprecated in 2.2 (to be removed in 3.0).
*/ */
@Deprecated
public MullerSolver() { public MullerSolver() {
super(100, 1E-6); super(100, 1E-6);
} }

View File

@ -50,9 +50,7 @@ public class NewtonSolver extends UnivariateRealSolverImpl {
/** /**
* Construct a solver. * Construct a solver.
* @deprecated in 2.2 (to be removed in 3.0).
*/ */
@Deprecated
public NewtonSolver() { public NewtonSolver() {
super(100, 1E-6); super(100, 1E-6);
} }

View File

@ -53,9 +53,7 @@ public class RiddersSolver extends UnivariateRealSolverImpl {
/** /**
* Construct a solver. * Construct a solver.
* @deprecated in 2.2
*/ */
@Deprecated
public RiddersSolver() { public RiddersSolver() {
super(100, 1E-6); super(100, 1E-6);
} }

View File

@ -58,9 +58,7 @@ public class SecantSolver extends UnivariateRealSolverImpl {
/** /**
* Construct a solver. * Construct a solver.
* @deprecated in 2.2 (to be removed in 3.0).
*/ */
@Deprecated
public SecantSolver() { public SecantSolver() {
super(100, 1E-6); super(100, 1E-6);
} }

View File

@ -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). 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! 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=" <release version="2.2" date="2011-03-02" description="
This is primarily a maintenance release, but it also includes new features and enhancements. This is primarily a maintenance release, but it also includes new features and enhancements.