Author: sebb
Date: Thu Mar 25 15:08:12 2010
New Revision: 927439

URL: http://svn.apache.org/viewvc?rev=927439&view=rev
Log:
Unnecessary semi-colons

Modified:
    
commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobiansTest.java

Modified: 
commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobiansTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobiansTest.java?rev=927439&r1=927438&r2=927439&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobiansTest.java
 (original)
+++ 
commons/proper/math/trunk/src/test/java/org/apache/commons/math/ode/jacobians/FirstOrderIntegratorWithJacobiansTest.java
 Thu Mar 25 15:08:12 2010
@@ -320,7 +320,7 @@ public class FirstOrderIntegratorWithJac
             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 FirstOrderIntegratorWithJac
             };
         }
 
-    };
+    }
 
 }


Reply via email to