You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2008/03/23 14:46:44 UTC

svn commit: r640206 - /commons/proper/math/trunk/src/test/org/apache/commons/math/estimation/LevenbergMarquardtEstimatorTest.java

Author: luc
Date: Sun Mar 23 06:46:40 2008
New Revision: 640206

URL: http://svn.apache.org/viewvc?rev=640206&view=rev
Log:
removed warnings

Modified:
    commons/proper/math/trunk/src/test/org/apache/commons/math/estimation/LevenbergMarquardtEstimatorTest.java

Modified: commons/proper/math/trunk/src/test/org/apache/commons/math/estimation/LevenbergMarquardtEstimatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/org/apache/commons/math/estimation/LevenbergMarquardtEstimatorTest.java?rev=640206&r1=640205&r2=640206&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/org/apache/commons/math/estimation/LevenbergMarquardtEstimatorTest.java (original)
+++ commons/proper/math/trunk/src/test/org/apache/commons/math/estimation/LevenbergMarquardtEstimatorTest.java Sun Mar 23 06:46:40 2008
@@ -20,7 +20,6 @@
 import java.util.ArrayList;
 import java.util.HashMap;
 import java.util.Iterator;
-import java.util.Locale;
 import java.util.Set;
 
 import org.apache.commons.math.estimation.EstimatedParameter;
@@ -823,7 +822,8 @@
 
       private class LocalMeasurement extends WeightedMeasurement {
 
-         private final double x;
+        private static final long serialVersionUID = 1555043155023729130L;
+        private final double x;
 
           // constructor
           public LocalMeasurement(double x, double y, double w) {