fixed exception messages arguments types

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@627994 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2008-02-15 10:16:05 +00:00
parent b09bdfb66e
commit 79325e1f4e
2 changed files with 4 additions and 4 deletions

View File

@ -36,7 +36,7 @@ public class NotARotationMatrixException
* @param specifier format specifier (to be translated)
* @param parts to insert in the format (no translation)
*/
public NotARotationMatrixException(String specifier, String[] parts) {
public NotARotationMatrixException(String specifier, Object[] parts) {
super(specifier, parts);
}

View File

@ -196,7 +196,7 @@ public class Rotation implements Serializable {
(m[1].length != 3) || (m[2].length != 3)) {
throw new NotARotationMatrixException("a {0}x{1} matrix" +
" cannot be a rotation matrix",
new String[] {
new Object[] {
Integer.toString(m.length),
Integer.toString(m[0].length)
});
@ -212,7 +212,7 @@ public class Rotation implements Serializable {
if (det < 0.0) {
throw new NotARotationMatrixException("the closest orthogonal matrix" +
" has a negative determinant {0}",
new String[] {
new Object[] {
Double.toString(det)
});
}
@ -1012,7 +1012,7 @@ public class Rotation implements Serializable {
// the algorithm did not converge after 10 iterations
throw new NotARotationMatrixException("unable to orthogonalize matrix" +
" in {0} iterations",
new String[] {
new Object[] {
Integer.toString(i - 1)
});
}