You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by se...@apache.org on 2012/03/03 02:22:57 UTC

svn commit: r1296545 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/DescriptiveStatistics.java

Author: sebb
Date: Sat Mar  3 01:22:57 2012
New Revision: 1296545

URL: http://svn.apache.org/viewvc?rev=1296545&view=rev
Log:
Field might as well be private, as there's a public getter

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/DescriptiveStatistics.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/DescriptiveStatistics.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/DescriptiveStatistics.java?rev=1296545&r1=1296544&r2=1296545&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/DescriptiveStatistics.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/stat/descriptive/DescriptiveStatistics.java Sat Mar  3 01:22:57 2012
@@ -79,7 +79,7 @@ public class DescriptiveStatistics imple
     /**
      *  Stored data values
      */
-    protected ResizableDoubleArray eDA = new ResizableDoubleArray();
+    private ResizableDoubleArray eDA = new ResizableDoubleArray();
 
     /** Mean statistic implementation - can be reset by setter. */
     private UnivariateStatistic meanImpl = new Mean();