You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by lu...@apache.org on 2008/12/21 22:54:26 UTC

svn commit: r728526 - /commons/proper/math/trunk/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java

Author: luc
Date: Sun Dec 21 13:54:26 2008
New Revision: 728526

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

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

Modified: commons/proper/math/trunk/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java?rev=728526&r1=728525&r2=728526&view=diff
==============================================================================
--- commons/proper/math/trunk/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java (original)
+++ commons/proper/math/trunk/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java Sun Dec 21 13:54:26 2008
@@ -145,8 +145,7 @@
     }
 
     /** {@inheritDoc} */
-    public RealMatrix getR()
-        throws IllegalStateException {
+    public RealMatrix getR() {
 
         if (cachedR == null) {