Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 6937 invoked from network); 21 Jan 2011 20:25:17 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 21 Jan 2011 20:25:17 -0000 Received: (qmail 92756 invoked by uid 500); 21 Jan 2011 20:25:17 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 92588 invoked by uid 500); 21 Jan 2011 20:25:16 -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 92581 invoked by uid 99); 21 Jan 2011 20:25:16 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 21 Jan 2011 20:25:16 +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; Fri, 21 Jan 2011 20:25:15 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id DACD62388A77; Fri, 21 Jan 2011 20:24:53 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1062008 - /commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java Date: Fri, 21 Jan 2011 20:24:53 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110121202453.DACD62388A77@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Fri Jan 21 20:24:53 2011 New Revision: 1062008 URL: http://svn.apache.org/viewvc?rev=1062008&view=rev Log: Correct list of unique methods Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java?rev=1062008&r1=1062007&r2=1062008&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java (original) +++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/util/FastMath.java Fri Jan 21 20:24:53 2011 @@ -17,14 +17,17 @@ package org.apache.commons.math.util; /** - * Faster, more accurate, portable alternative to StrictMath. + * Faster, more accurate, portable alternative to {@link StrictMath}. *

- * Additionally implements the following methods: + * Additionally implements the following methods not found in StrictMath: *

    *
  • {@link #asinh(double)}
  • *
  • {@link #acosh(double)}
  • *
  • {@link #atanh(double)}
  • *
  • {@link #nextAfter(float,float)}
  • + *
+ * The following methods are found in StrictMath since 1.6 only + *
    *
  • {@link #nextAfter(double,double)}
  • *
  • {@link #nextUp(double)}
  • *
  • {@link #nextUp(float)}