From c30aac9ad6221fe7e6a031cfc82f68359ccf1c54 Mon Sep 17 00:00:00 2001 From: Phil Steitz Date: Mon, 19 Oct 2009 10:27:47 +0000 Subject: [PATCH] Javadoc only. Dropped 'now defunct' from JAMA attribution. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@826627 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/math/linear/CholeskyDecomposition.java | 2 +- .../java/org/apache/commons/math/linear/EigenDecomposition.java | 2 +- .../org/apache/commons/math/linear/FieldLUDecomposition.java | 2 +- .../java/org/apache/commons/math/linear/LUDecomposition.java | 2 +- .../java/org/apache/commons/math/linear/QRDecomposition.java | 2 +- .../apache/commons/math/linear/SingularValueDecomposition.java | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java b/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java index 1cf56ed26..daf40615e 100644 --- a/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java +++ b/src/main/java/org/apache/commons/math/linear/CholeskyDecomposition.java @@ -21,7 +21,7 @@ package org.apache.commons.math.linear; /** * An interface to classes that implement an algorithm to calculate the * Cholesky decomposition of a real symmetric positive-definite matrix. - *

This interface is based on the class with similar name from the now defunct + *

This interface is based on the class with similar name from the * JAMA library, with the * following changes:

*