From c4243e1103ff2c1cebf66debe1046433d56439a5 Mon Sep 17 00:00:00 2001 From: Gilles Sadowski Date: Wed, 9 Jan 2013 13:17:08 +0000 Subject: [PATCH] Fixed "CheckStyle" warnings. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1430845 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/commons/math3/linear/DiagonalMatrix.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/math3/linear/DiagonalMatrix.java b/src/main/java/org/apache/commons/math3/linear/DiagonalMatrix.java index 8cb555f31..53828477c 100644 --- a/src/main/java/org/apache/commons/math3/linear/DiagonalMatrix.java +++ b/src/main/java/org/apache/commons/math3/linear/DiagonalMatrix.java @@ -52,7 +52,7 @@ public class DiagonalMatrix extends AbstractRealMatrix } /** - * Creates a matrix using the input array as the underlying data. + * Creates a matrix using the input array as the underlying data. *
* The input array is copied, not referenced. * @@ -79,7 +79,7 @@ public class DiagonalMatrix extends AbstractRealMatrix data = copyArray ? d.clone() : d; } - /** + /** * {@inheritDoc} * * @throws DimensionMismatchException if the requested dimensions are not equal. @@ -214,7 +214,7 @@ public class DiagonalMatrix extends AbstractRealMatrix return data; } - /** + /** {@inheritDoc} * @throws MathUnsupportedOperationException */ @Override