Return-Path: Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: (qmail 68143 invoked from network); 2 Jan 2011 00:11:56 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 2 Jan 2011 00:11:56 -0000 Received: (qmail 11155 invoked by uid 500); 2 Jan 2011 00:11:56 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 11103 invoked by uid 500); 2 Jan 2011 00:11:56 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 11096 invoked by uid 99); 2 Jan 2011 00:11:56 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Jan 2011 00:11:56 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 02 Jan 2011 00:11:54 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 933952388994; Sun, 2 Jan 2011 00:11:33 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1054329 - /commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java Date: Sun, 02 Jan 2011 00:11:33 -0000 To: commits@commons.apache.org From: psteitz@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20110102001133.933952388994@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: psteitz Date: Sun Jan 2 00:11:33 2011 New Revision: 1054329 URL: http://svn.apache.org/viewvc?rev=1054329&view=rev Log: Corrected exception type. Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java Modified: commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java URL: http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java?rev=1054329&r1=1054328&r2=1054329&view=diff ============================================================================== --- commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java (original) +++ commons/proper/math/branches/MATH_2_X/src/main/java/org/apache/commons/math/linear/RealVector.java Sun Jan 2 00:11:33 2011 @@ -857,7 +857,7 @@ public interface RealVector { /** Converts this vector into a unit vector. *

The instance itself is changed by this method.

- * @throws org.apache.commons.math.exception.MathArithmeticException + * @throws ArithmeticException * if the norm is zero. */ void unitize();