Fixed "CheckStyle" warnings.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1430845 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2013-01-09 13:17:08 +00:00
parent 2182ea5442
commit c4243e1103
1 changed files with 3 additions and 3 deletions

View File

@ -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.
* <br/> * <br/>
* The input array is copied, not referenced. * The input array is copied, not referenced.
* *
@ -79,7 +79,7 @@ public class DiagonalMatrix extends AbstractRealMatrix
data = copyArray ? d.clone() : d; data = copyArray ? d.clone() : d;
} }
/** /**
* {@inheritDoc} * {@inheritDoc}
* *
* @throws DimensionMismatchException if the requested dimensions are not equal. * @throws DimensionMismatchException if the requested dimensions are not equal.
@ -214,7 +214,7 @@ public class DiagonalMatrix extends AbstractRealMatrix
return data; return data;
} }
/** /** {@inheritDoc}
* @throws MathUnsupportedOperationException * @throws MathUnsupportedOperationException
*/ */
@Override @Override