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 <code>startIndex</code> 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() {


Reply via email to