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:
parent
282cd1de7d
commit
399b104b96
|
@ -32,8 +32,10 @@ public class ContinuedFractionTest extends TestCase {
|
||||||
super(name);
|
super(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testGoldenRation(){
|
public void testGoldenRatio(){
|
||||||
ContinuedFraction cf = new ContinuedFraction() {
|
ContinuedFraction cf = new ContinuedFraction() {
|
||||||
|
private static final long serialVersionUID = 4696264881688589546L;
|
||||||
|
|
||||||
public double getA(int n, double x) {
|
public double getA(int n, double x) {
|
||||||
return 1.0;
|
return 1.0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue