Author: sebb
Date: Mon Jan 25 19:05:00 2010
New Revision: 902931
URL: http://svn.apache.org/viewvc?rev=902931&view=rev
Log:
Does not make sense for count variable to be public
Modified:
commons/proper/math/trunk/src/test/java/org/apache/commons/math/genetics/FitnessCachingTest.java
Modified:
commons/proper/math/trunk/src/test/java/org/apache/commons/math/genetics/FitnessCachingTest.java
URL:
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math/genetics/FitnessCachingTest.java?rev=902931&r1=902930&r2=902931&view=diff
==============================================================================
---
commons/proper/math/trunk/src/test/java/org/apache/commons/math/genetics/FitnessCachingTest.java
(original)
+++
commons/proper/math/trunk/src/test/java/org/apache/commons/math/genetics/FitnessCachingTest.java
Mon Jan 25 19:05:00 2010
@@ -36,7 +36,7 @@
private static final double ELITISM_RATE = 0.2;
// how many times was the fitness computed
- public static int fitnessCalls = 0;
+ private static int fitnessCalls = 0;
@Test