fixed a checkstyle warning

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@825917 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2009-10-16 14:47:27 +00:00
parent 925305f0fa
commit 88885e7a1c
1 changed files with 1 additions and 1 deletions

View File

@ -199,7 +199,7 @@ public class OneWayAnovaImpl implements OneWayAnova {
* @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;