Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 34383 invoked from network); 6 Dec 2010 02:08:25 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 6 Dec 2010 02:08:25 -0000 Received: (qmail 59521 invoked by uid 500); 6 Dec 2010 02:08:25 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 59478 invoked by uid 500); 6 Dec 2010 02:08: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 59471 invoked by uid 99); 6 Dec 2010 02:08:25 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 06 Dec 2010 02:08:25 +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; Mon, 06 Dec 2010 02:08:23 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 1CE4B2388994; Mon, 6 Dec 2010 02:08:02 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1042512 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java Date: Mon, 06 Dec 2010 02:08:02 -0000 To: commits@commons.apache.org From: sebb@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101206020802.1CE4B2388994@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: sebb Date: Mon Dec 6 02:08:01 2010 New Revision: 1042512 URL: http://svn.apache.org/viewvc?rev=1042512&view=rev Log: Add missing @Deprecated annotation Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java?rev=1042512&r1=1042511&r2=1042512&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/linear/RealVector.java Mon Dec 6 02:08:01 2010 @@ -256,6 +256,7 @@ public interface RealVector { * the function classes in package * {@link org.apache.commons.math.analysis.function}. */ + @Deprecated RealVector mapPow(double d); /** @@ -269,6 +270,7 @@ public interface RealVector { * the function classes in package * {@link org.apache.commons.math.analysis.function}. */ + @Deprecated RealVector mapPowToSelf(double d); /**