You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2013/07/02 21:57:45 UTC

svn commit: r1499082 - /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/EigenDecompositionTest.java

Author: tn
Date: Tue Jul  2 19:57:45 2013
New Revision: 1499082

URL: http://svn.apache.org/r1499082
Log:
Suppress unused warning in test code.

Modified:
    commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/EigenDecompositionTest.java

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/EigenDecompositionTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/EigenDecompositionTest.java?rev=1499082&r1=1499081&r2=1499082&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/EigenDecompositionTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/EigenDecompositionTest.java Tue Jul  2 19:57:45 2013
@@ -369,6 +369,7 @@ public class EigenDecompositionTest {
         };
 
         final EigenDecomposition dec = new EigenDecomposition(MatrixUtils.createRealMatrix(data));
+        @SuppressWarnings("unused")
         final RealMatrix sqrtM = dec.getSquareRoot();
     }
 
@@ -381,6 +382,7 @@ public class EigenDecompositionTest {
         };
 
         final EigenDecomposition dec = new EigenDecomposition(MatrixUtils.createRealMatrix(data));
+        @SuppressWarnings("unused")
         final RealMatrix sqrtM = dec.getSquareRoot();
     }