Author: celestin Date: Thu Sep 27 03:52:34 2012 New Revision: 1390831 URL: http://svn.apache.org/viewvc?rev=1390831&view=rev Log: MATH-870: deprecated SparseRealMatrix and OpenMapRealMatrix.
Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/OpenMapRealMatrix.java commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SparseRealMatrix.java Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/OpenMapRealMatrix.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/OpenMapRealMatrix.java?rev=1390831&r1=1390830&r2=1390831&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/OpenMapRealMatrix.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/OpenMapRealMatrix.java Thu Sep 27 03:52:34 2012 @@ -27,7 +27,13 @@ import org.apache.commons.math3.util.Ope * * @version $Id$ * @since 2.0 + * @deprecated As of version 3.1, this class is deprecated, for reasons exposed + * in this JIRA + * <a href="https://issues.apache.org/jira/browse/MATH-870">ticket</a>. This + * class will be removed in version 4.0. + * */ +@Deprecated public class OpenMapRealMatrix extends AbstractRealMatrix implements SparseRealMatrix, Serializable { /** Serializable version identifier. */ Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SparseRealMatrix.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SparseRealMatrix.java?rev=1390831&r1=1390830&r2=1390831&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SparseRealMatrix.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/SparseRealMatrix.java Thu Sep 27 03:52:34 2012 @@ -22,8 +22,13 @@ package org.apache.commons.math3.linear; * * @version $Id$ * @since 2.0 + * @deprecated As of version 3.1, this class is deprecated, for reasons exposed + * in this JIRA + * <a href="https://issues.apache.org/jira/browse/MATH-870">ticket</a>. This + * class will be removed in version 4.0. * */ +@Deprecated public interface SparseRealMatrix extends RealMatrix { }