Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 29741 invoked from network); 12 Nov 2010 21:11:20 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 12 Nov 2010 21:11:20 -0000 Received: (qmail 98989 invoked by uid 500); 12 Nov 2010 21:11:46 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 98907 invoked by uid 500); 12 Nov 2010 21:11:46 -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 98868 invoked by uid 99); 12 Nov 2010 21:11:46 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 12 Nov 2010 21:11:46 +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, 12 Nov 2010 21:11:43 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 20C2323889EA; Fri, 12 Nov 2010 21:10:29 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1034566 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java Date: Fri, 12 Nov 2010 21:10:29 -0000 To: commits@commons.apache.org From: erans@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20101112211029.20C2323889EA@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: erans Date: Fri Nov 12 21:10:28 2010 New Revision: 1034566 URL: http://svn.apache.org/viewvc?rev=1034566&view=rev Log: MATH-438 Removed deprecated method. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java?rev=1034566&r1=1034565&r2=1034566&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math/util/ResizableDoubleArray.java Fri Nov 12 21:10:28 2010 @@ -614,23 +614,6 @@ public class ResizableDoubleArray implem * * * @return the internal storage array used by this object - * @deprecated replaced by {@link #getInternalValues()} as of 2.0 - */ - @Deprecated - public synchronized double[] getValues() { - return internalArray; - } - - /** - * Returns the internal storage array. Note that this method returns - * a reference to the internal storage array, not a copy, and to correctly - * address elements of the array, the startIndex is - * required (available via the {@link #start} method). This method should - * only be used in cases where copying the internal array is not practical. - * The {@link #getElements} method should be used in all other cases. - * - * - * @return the internal storage array used by this object * @since 2.0 */ public synchronized double[] getInternalValues() {