You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2013/01/09 14:17:08 UTC

svn commit: r1430845 - /commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/DiagonalMatrix.java

Author: erans
Date: Wed Jan  9 13:17:08 2013
New Revision: 1430845

URL: http://svn.apache.org/viewvc?rev=1430845&view=rev
Log:
Fixed "CheckStyle" warnings.

Modified:
    commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/DiagonalMatrix.java

Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/DiagonalMatrix.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/DiagonalMatrix.java?rev=1430845&r1=1430844&r2=1430845&view=diff
==============================================================================
--- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/DiagonalMatrix.java (original)
+++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/linear/DiagonalMatrix.java Wed Jan  9 13:17:08 2013
@@ -52,7 +52,7 @@ public class DiagonalMatrix extends Abst
     }
 
     /**
-     * Creates a matrix using the input array as the underlying data. 
+     * Creates a matrix using the input array as the underlying data.
      * <br/>
      * The input array is copied, not referenced.
      *
@@ -79,7 +79,7 @@ public class DiagonalMatrix extends Abst
         data = copyArray ? d.clone() : d;
     }
 
-    /** 
+    /**
      * {@inheritDoc}
      *
      * @throws DimensionMismatchException if the requested dimensions are not equal.
@@ -214,7 +214,7 @@ public class DiagonalMatrix extends Abst
         return data;
     }
 
-    /**
+    /** {@inheritDoc}
      * @throws MathUnsupportedOperationException
      */
     @Override