added missing deprecation

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1073253 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2011-02-22 08:40:05 +00:00
parent dc9bae09a8
commit 90a657b4dd

View File

@ -37,7 +37,9 @@ public class InvalidMatrixException extends MathRuntimeException {
* @param pattern format specifier
* @param arguments format arguments
* @since 2.0
* @deprecated since 2.2 replaced by {@link #InvalidMatrixException(Localizable, Object...)}
*/
@Deprecated
public InvalidMatrixException(final String pattern, final Object ... arguments) {
this(new DummyLocalizable(pattern), arguments);
}