Deprecated methods that exposed internal state.


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1408723 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2012-11-13 13:55:45 +00:00
parent b324690406
commit 593be67923
1 changed files with 4 additions and 0 deletions

View File

@ -669,7 +669,9 @@ public class ResizableDoubleArray implements DoubleArray, Serializable {
* *
* @return the internal storage array used by this object * @return the internal storage array used by this object
* @since 2.0 * @since 2.0
* @deprecated As of 3.1.
*/ */
@Deprecated
public synchronized double[] getInternalValues() { public synchronized double[] getInternalValues() {
return internalArray; return internalArray;
} }
@ -821,7 +823,9 @@ public class ResizableDoubleArray implements DoubleArray, Serializable {
* </code> * </code>
* *
* @return the starting index. * @return the starting index.
* @deprecated As of 3.1.
*/ */
@Deprecated
public synchronized int start() { public synchronized int start() {
return startIndex; return startIndex;
} }