fixed a warning about a missing serialVersionUID

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@566841 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2007-08-16 20:43:44 +00:00
parent 282cd1de7d
commit 399b104b96
1 changed files with 3 additions and 1 deletions

View File

@ -32,8 +32,10 @@ public class ContinuedFractionTest extends TestCase {
super(name);
}
public void testGoldenRation(){
public void testGoldenRatio(){
ContinuedFraction cf = new ContinuedFraction() {
private static final long serialVersionUID = 4696264881688589546L;
public double getA(int n, double x) {
return 1.0;
}