Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 19170 invoked from network); 16 Oct 2009 14:47:53 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 16 Oct 2009 14:47:53 -0000 Received: (qmail 55410 invoked by uid 500); 16 Oct 2009 14:47:53 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 55337 invoked by uid 500); 16 Oct 2009 14:47:53 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 55328 invoked by uid 99); 16 Oct 2009 14:47:53 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Oct 2009 14:47:53 +0000 X-ASF-Spam-Status: No, hits=-2.6 required=5.0 tests=AWL,BAYES_00 X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 16 Oct 2009 14:47:47 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A1C2823888E7; Fri, 16 Oct 2009 14:47:27 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r825917 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/stat/inference/OneWayAnovaImpl.java Date: Fri, 16 Oct 2009 14:47:27 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20091016144727.A1C2823888E7@eris.apache.org> 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;