Author: erans
Date: Tue Jan 18 15:47:33 2011
New Revision: 1060424

URL: http://svn.apache.org/viewvc?rev=1060424&view=rev
Log:
Javadoc clean-up.

Modified:
    
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/solvers/UnivariateRealSolver.java
    
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/solvers/UnivariateRealSolverImpl.java

Modified: 
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/solvers/UnivariateRealSolver.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/solvers/UnivariateRealSolver.java?rev=1060424&r1=1060423&r2=1060424&view=diff
==============================================================================
--- 
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/solvers/UnivariateRealSolver.java
 (original)
+++ 
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/solvers/UnivariateRealSolver.java
 Tue Jan 18 15:47:33 2011
@@ -94,8 +94,7 @@ public interface UnivariateRealSolver ex
      * @throws IllegalArgumentException if min > max or the endpoints do not
      * satisfy the requirements specified by the solver
      * @since 2.0
-     * @deprecated in 2.2 (to be removed in 3.0). Please use
-     * {@link #solve(int,UnivariateRealFunction,double,double)} instead.
+     * @deprecated in 2.2 (to be removed in 3.0).
      */
     @Deprecated
     double solve(UnivariateRealFunction f, double min, double max)
@@ -140,8 +139,7 @@ public interface UnivariateRealSolver ex
      * @throws IllegalArgumentException if min > max or the arguments do not
      * satisfy the requirements specified by the solver
      * @since 2.0
-     * @deprecated in 2.2 (to be removed in 3.0). Please use
-     * {@link #solve(int,UnivariateRealFunction,double,double,double)} instead.
+     * @deprecated in 2.2 (to be removed in 3.0).
      */
     @Deprecated
     double solve(UnivariateRealFunction f, double min, double max, double 
startValue)

Modified: 
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/solvers/UnivariateRealSolverImpl.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/solvers/UnivariateRealSolverImpl.java?rev=1060424&r1=1060423&r2=1060424&view=diff
==============================================================================
--- 
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/solvers/UnivariateRealSolverImpl.java
 (original)
+++ 
commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/analysis/solvers/UnivariateRealSolverImpl.java
 Tue Jan 18 15:47:33 2011
@@ -142,7 +142,7 @@ public abstract class UnivariateRealSolv
      * Solvers that do require bracketing should be able to handle the case
      * where one of the endpoints is itself a root.</p>
      *
-     * @param f the function to solve.
+     * @param function the function to solve.
      * @param min the lower bound for the interval.
      * @param max the upper bound for the interval.
      * @param maxEval Maximum number of evaluations.
@@ -165,7 +165,7 @@ public abstract class UnivariateRealSolv
      * Solvers that do require bracketing should be able to handle the case
      * where one of the endpoints is itself a root.</p>
      *
-     * @param f the function to solve.
+     * @param function the function to solve.
      * @param min the lower bound for the interval.
      * @param max the upper bound for the interval.
      * @param startValue the start value to use


Reply via email to