mirror of
https://github.com/apache/commons-math.git
synced 2025-02-11 12:36:05 +00:00
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:
parent
481a091105
commit
fb17113403
@ -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);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user