removed spurious throws clause

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_0@690934 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-09-01 10:42:28 +00:00
parent 481a091105
commit fb17113403

View File

@ -73,10 +73,8 @@ public class QRDecompositionImpl implements QRDecomposition {
* <p>Calling this constructor is equivalent to first call the no-arguments
* constructor and then call {@link #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);
}