removed a compilation warning about unused variable

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@915816 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2010-02-24 15:18:37 +00:00
parent b97285ee1b
commit 8a687cc604
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ public class EigenSolverTest extends TestCase {
// using RealMatrix
RealMatrix solution=es.solve(b);
assertEquals(0, es.solve(b).subtract(xRef).getNorm(), 2.5e-12);
assertEquals(0, solution.subtract(xRef).getNorm(), 2.5e-12);
// using double[]
for (int i = 0; i < b.getColumnDimension(); ++i) {