Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 33455 invoked from network); 1 Jan 2011 22:19:49 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 1 Jan 2011 22:19:49 -0000 Received: (qmail 61882 invoked by uid 500); 1 Jan 2011 22:19:49 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 61835 invoked by uid 500); 1 Jan 2011 22:19:49 -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 61828 invoked by uid 99); 1 Jan 2011 22:19:49 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 01 Jan 2011 22:19:49 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED 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; Sat, 01 Jan 2011 22:19:46 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 7CA3723889E7; Sat, 1 Jan 2011 22:19:25 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1054302 - in /commons/proper/math: branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/ trunk/src/main/java/org/apache/commons/math/distribution/ Date: Sat, 01 Jan 2011 22:19:25 -0000 To: commits@commons.apache.org From: psteitz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110101221925.7CA3723889E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: psteitz Date: Sat Jan 1 22:19:24 2011 New Revision: 1054302 URL: http://svn.apache.org/viewvc?rev=1054302&view=rev Log: Fixed checkstyle errors: missing javadoc. Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/PascalDistributionImpl.java commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/PoissonDistributionImpl.java commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/TDistributionImpl.java commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/PascalDistributionImpl.java commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/PoissonDistributionImpl.java commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/TDistributionImpl.java Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/PascalDistributionImpl.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/PascalDistributionImpl.java?rev=1054302&r1=1054301&r2=1054302&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/PascalDistributionImpl.java (original) +++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/PascalDistributionImpl.java Sat Jan 1 22:19:24 2011 @@ -276,6 +276,9 @@ public class PascalDistributionImpl exte return ( r * p ) / (pInv * pInv); } + /** + * {@inheritDoc} + */ @Override public boolean isSupportUpperBoundInclusive() { return false; Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/PoissonDistributionImpl.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/PoissonDistributionImpl.java?rev=1054302&r1=1054301&r2=1054302&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/PoissonDistributionImpl.java (original) +++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/PoissonDistributionImpl.java Sat Jan 1 22:19:24 2011 @@ -353,6 +353,9 @@ public class PoissonDistributionImpl ext return getMean(); } + /** + * {@inheritDoc} + */ @Override public boolean isSupportUpperBoundInclusive() { return true; Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/TDistributionImpl.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/TDistributionImpl.java?rev=1054302&r1=1054301&r2=1054302&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/TDistributionImpl.java (original) +++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/distribution/TDistributionImpl.java Sat Jan 1 22:19:24 2011 @@ -301,11 +301,17 @@ public class TDistributionImpl return Double.NaN; } + /** + * {@inheritDoc} + */ @Override public boolean isSupportLowerBoundInclusive() { return false; } + /** + * {@inheritDoc} + */ @Override public boolean isSupportUpperBoundInclusive() { return false; Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/PascalDistributionImpl.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/PascalDistributionImpl.java?rev=1054302&r1=1054301&r2=1054302&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/PascalDistributionImpl.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/PascalDistributionImpl.java Sat Jan 1 22:19:24 2011 @@ -226,6 +226,9 @@ public class PascalDistributionImpl exte return ( r * p ) / (pInv * pInv); } + /** + * {@inheritDoc} + */ @Override public boolean isSupportUpperBoundInclusive() { return false; Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/PoissonDistributionImpl.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/PoissonDistributionImpl.java?rev=1054302&r1=1054301&r2=1054302&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/PoissonDistributionImpl.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/PoissonDistributionImpl.java Sat Jan 1 22:19:24 2011 @@ -282,6 +282,9 @@ public class PoissonDistributionImpl ext return getMean(); } + /** + * {@inheritDoc} + */ @Override public boolean isSupportUpperBoundInclusive() { return true; Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/TDistributionImpl.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/TDistributionImpl.java?rev=1054302&r1=1054301&r2=1054302&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/TDistributionImpl.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/distribution/TDistributionImpl.java Sat Jan 1 22:19:24 2011 @@ -275,11 +275,17 @@ public class TDistributionImpl return Double.NaN; } + /** + * {@inheritDoc} + */ @Override public boolean isSupportLowerBoundInclusive() { return false; } + /** + * {@inheritDoc} + */ @Override public boolean isSupportUpperBoundInclusive() { return false;