Author: luc
Date: Mon Sep  1 03:42:28 2008
New Revision: 690934

URL: http://svn.apache.org/viewvc?rev=690934&view=rev
Log:
removed spurious throws clause

Modified:
    
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java

Modified: 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java?rev=690934&r1=690933&r2=690934&view=diff
==============================================================================
--- 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java
 (original)
+++ 
commons/proper/math/branches/MATH_2_0/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java
 Mon Sep  1 03:42:28 2008
@@ -73,10 +73,8 @@
      * <p>Calling this constructor is equivalent to first call the no-arguments
      * constructor and then call [EMAIL PROTECTED] #decompose(RealMatrix)}.</p>
      * @param matrix The matrix to decompose.
-     * @exception InvalidMatrixException if matrix is not square
      */
-    public QRDecompositionImpl(RealMatrix matrix)
-        throws InvalidMatrixException {
+    public QRDecompositionImpl(RealMatrix matrix) {
         decompose(matrix);
     }
 


Reply via email to