fixed a warning about a mission serializeVersionUID.

However, should this really be serializable at all ?

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@786883 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-06-20 18:57:30 +00:00
parent 4474f96263
commit a4ef3f9941
1 changed files with 3 additions and 0 deletions

View File

@ -31,6 +31,9 @@ import org.apache.commons.math.analysis.UnivariateRealFunction;
public abstract class UnivariateRealSolverImpl
extends ConvergingAlgorithmImpl implements UnivariateRealSolver {
/** Serializable version ID. */
private static final long serialVersionUID = 1L;
/** Maximum error of function. */
protected double functionValueAccuracy;