Author: erans
Date: Tue Nov 13 13:55:45 2012
New Revision: 1408723

URL: http://svn.apache.org/viewvc?rev=1408723&view=rev
Log:
MATH-894
Deprecated methods that exposed internal state.

Modified:
    
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java

Modified: 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java?rev=1408723&r1=1408722&r2=1408723&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java
 (original)
+++ 
commons/proper/math/trunk/src/main/java/org/apache/commons/math3/util/ResizableDoubleArray.java
 Tue Nov 13 13:55:45 2012
@@ -669,7 +669,9 @@ public class ResizableDoubleArray implem
      *
      * @return the internal storage array used by this object
      * @since 2.0
+     * @deprecated As of 3.1.
      */
+    @Deprecated
     public synchronized double[] getInternalValues() {
         return internalArray;
     }
@@ -821,7 +823,9 @@ public class ResizableDoubleArray implem
      * </code>
      *
      * @return the starting index.
+     * @deprecated As of 3.1.
      */
+    @Deprecated
     public synchronized int start() {
         return startIndex;
     }


Reply via email to