Return-Path: Delivered-To: apmail-commons-commits-archive@locus.apache.org Received: (qmail 6511 invoked from network); 1 May 2008 19:03:25 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 1 May 2008 19:03:25 -0000 Received: (qmail 80470 invoked by uid 500); 1 May 2008 19:03:26 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 80143 invoked by uid 500); 1 May 2008 19:03:25 -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 80126 invoked by uid 99); 1 May 2008 19:03:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 May 2008 12:03:25 -0700 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; Thu, 01 May 2008 19:02:40 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id A07E923889FE; Thu, 1 May 2008 12:03:00 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r652627 - in /commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla: automatic/AutomaticDifferentiator.java store/FetchDifferentiator.java Date: Thu, 01 May 2008 19:03:00 -0000 To: commits@commons.apache.org From: luc@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080501190300.A07E923889FE@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Thu May 1 12:02:59 2008 New Revision: 652627 URL: http://svn.apache.org/viewvc?rev=652627&view=rev Log: fixed javadoc links errors Modified: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/automatic/AutomaticDifferentiator.java commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/store/FetchDifferentiator.java Modified: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/automatic/AutomaticDifferentiator.java URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/automatic/AutomaticDifferentiator.java?rev=652627&r1=652626&r2=652627&view=diff ============================================================================== --- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/automatic/AutomaticDifferentiator.java (original) +++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/automatic/AutomaticDifferentiator.java Thu May 1 12:02:59 2008 @@ -48,7 +48,7 @@ * {@link java.lang.StrictMath StrictMath}. Pure bytecode methods are analyzed * and converted. Methods from math implementation classes are only recognized * by class and name and replaced by predefined derivative code.

- * @see org.apache.commons.nabla.Fetchdifferentiator + * @see org.apache.commons.nabla.store.FetchDifferentiator */ public class AutomaticDifferentiator implements UnivariateDifferentiator { Modified: commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/store/FetchDifferentiator.java URL: http://svn.apache.org/viewvc/commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/store/FetchDifferentiator.java?rev=652627&r1=652626&r2=652627&view=diff ============================================================================== --- commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/store/FetchDifferentiator.java (original) +++ commons/sandbox/nabla/trunk/src/main/java/org/apache/commons/nabla/store/FetchDifferentiator.java Thu May 1 12:02:59 2008 @@ -22,8 +22,8 @@ import org.apache.commons.nabla.core.UnivariateDifferentiator; /** Differentiator that fetches classes already differentiated by - * {@link org.apache.commons.nabla.store.AutomaticDifferentiator}. - * @see org.apache.commons.nabla.store.AutomaticDifferentiator + * {@link org.apache.commons.nabla.automatic.AutomaticDifferentiator}. + * @see org.apache.commons.nabla.automatic.AutomaticDifferentiator */ public class FetchDifferentiator implements UnivariateDifferentiator {