From 1f3d5634d5ef19048bbc295a6c90c95cd79c7044 Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Sun, 21 Dec 2008 21:54:26 +0000 Subject: [PATCH] removed spurious exception clause git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@728526 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/math/linear/QRDecompositionImpl.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java b/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java index 7b5ef4af1..2dc0d24aa 100644 --- a/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java +++ b/src/java/org/apache/commons/math/linear/QRDecompositionImpl.java @@ -145,8 +145,7 @@ public class QRDecompositionImpl implements QRDecomposition { } /** {@inheritDoc} */ - public RealMatrix getR() - throws IllegalStateException { + public RealMatrix getR() { if (cachedR == null) {