You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2009/10/16 16:47:27 UTC

svn commit: r825917 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/inference/OneWayAnovaImpl.java

Author: luc
Date: Fri Oct 16 14:47:27 2009
New Revision: 825917

URL: http://svn.apache.org/viewvc?rev=825917&view=rev
Log:
fixed a checkstyle warning

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/inference/OneWayAnovaImpl.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/inference/OneWayAnovaImpl.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/inference/OneWayAnovaImpl.java?rev=825917&r1=825916&r2=825917&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/inference/OneWayAnovaImpl.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/inference/OneWayAnovaImpl.java Fri Oct 16 14:47:27 2009
@@ -199,7 +199,7 @@
          * @param dfwg degrees of freedom in denominator (within groups)
          * @param F statistic
          */
-        public AnovaStats(int dfbg, int dfwg, double F) {
+        private AnovaStats(int dfbg, int dfwg, double F) {
             this.dfbg = dfbg;
             this.dfwg = dfwg;
             this.F = F;