Unnecessary semi-colons

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@927439 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-03-25 15:08:12 +00:00
parent ca45e8a4ea
commit 5eeb11e8e1
1 changed files with 2 additions and 2 deletions

View File

@ -320,7 +320,7 @@ public class FirstOrderIntegratorWithJacobiansTest {
return 1502.824469929139 + (-1438.6974831849952 + (460.959476642384 - 49.43847385647082 * b) * b) * b;
}
};
}
/** ODE representing a point moving on a circle with provided center and angular rate. */
private static class Circle implements ODEWithJacobians {
@ -430,6 +430,6 @@ public class FirstOrderIntegratorWithJacobiansTest {
};
}
};
}
}