Return-Path: Delivered-To: apmail-jakarta-commons-dev-archive@www.apache.org Received: (qmail 63335 invoked from network); 26 Feb 2007 22:44:42 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 26 Feb 2007 22:44:42 -0000 Received: (qmail 10633 invoked by uid 500); 26 Feb 2007 22:44:49 -0000 Delivered-To: apmail-jakarta-commons-dev-archive@jakarta.apache.org Received: (qmail 10560 invoked by uid 500); 26 Feb 2007 22:44:49 -0000 Mailing-List: contact commons-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Help: List-Post: List-Id: "Jakarta Commons Developers List" Reply-To: "Jakarta Commons Developers List" Delivered-To: mailing list commons-dev@jakarta.apache.org Received: (qmail 10549 invoked by uid 500); 26 Feb 2007 22:44:48 -0000 Received: (qmail 10546 invoked by uid 99); 26 Feb 2007 22:44:48 -0000 Received: from herse.apache.org (HELO herse.apache.org) (140.211.11.133) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Feb 2007 14:44:48 -0800 X-ASF-Spam-Status: No, hits=-99.5 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [140.211.11.3] (HELO eris.apache.org) (140.211.11.3) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 26 Feb 2007 14:44:39 -0800 Received: by eris.apache.org (Postfix, from userid 65534) id 550101A981A; Mon, 26 Feb 2007 14:44:19 -0800 (PST) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r512050 - in /jakarta/commons/proper/math/trunk/src: java/org/apache/commons/math/linear/MatrixIndexException.java test/org/apache/commons/math/linear/MatrixIndexExceptionTest.java Date: Mon, 26 Feb 2007 22:44:19 -0000 To: commons-cvs@jakarta.apache.org From: luc@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20070226224419.550101A981A@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: luc Date: Mon Feb 26 14:44:18 2007 New Revision: 512050 URL: http://svn.apache.org/viewvc?view=rev&rev=512050 Log: deprecated the no argument constructor Modified: jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/MatrixIndexException.java jakarta/commons/proper/math/trunk/src/test/org/apache/commons/math/linear/MatrixIndexExceptionTest.java Modified: jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/MatrixIndexException.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/MatrixIndexException.java?view=diff&rev=512050&r1=512049&r2=512050 ============================================================================== --- jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/MatrixIndexException.java (original) +++ jakarta/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/MatrixIndexException.java Mon Feb 26 14:44:18 2007 @@ -29,6 +29,7 @@ /** * Default constructor. + * @deprecated as of 1.2 replaced by #MatrixIndexException(String) */ public MatrixIndexException() { this(null); Modified: jakarta/commons/proper/math/trunk/src/test/org/apache/commons/math/linear/MatrixIndexExceptionTest.java URL: http://svn.apache.org/viewvc/jakarta/commons/proper/math/trunk/src/test/org/apache/commons/math/linear/MatrixIndexExceptionTest.java?view=diff&rev=512050&r1=512049&r2=512050 ============================================================================== --- jakarta/commons/proper/math/trunk/src/test/org/apache/commons/math/linear/MatrixIndexExceptionTest.java (original) +++ jakarta/commons/proper/math/trunk/src/test/org/apache/commons/math/linear/MatrixIndexExceptionTest.java Mon Feb 26 14:44:18 2007 @@ -23,13 +23,6 @@ * @version $Revision$ $Date$ */ public class MatrixIndexExceptionTest extends TestCase { - /** - * - */ - public void testConstructor(){ - MatrixIndexException ex = new MatrixIndexException(); - assertNull(ex.getMessage()); - } /** * --------------------------------------------------------------------- To unsubscribe, e-mail: commons-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: commons-dev-help@jakarta.apache.org