You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2013/06/29 00:41:00 UTC

svn commit: r1497952 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/integration/gauss/LegendreTest.java

Author: erans
Date: Fri Jun 28 22:41:00 2013
New Revision: 1497952

URL: http://svn.apache.org/r1497952
Log:
"final" keyword.

Modified:
    commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/integration/gauss/LegendreTest.java

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/integration/gauss/LegendreTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/integration/gauss/LegendreTest.java?rev=1497952&r1=1497951&r2=1497952&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/integration/gauss/LegendreTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/integration/gauss/LegendreTest.java Fri Jun 28 22:41:00 2013
@@ -29,7 +29,7 @@ import org.junit.Assert;
  * @version $Id$
  */
 public class LegendreTest {
-    private static GaussIntegratorFactory factory = new GaussIntegratorFactory();
+    private static final GaussIntegratorFactory factory = new GaussIntegratorFactory();
 
     @Test
     public void testCos() {