From 3a6575922a5f7c6d1afe1356b1aa7b6042c9434f Mon Sep 17 00:00:00 2001 From: Luc Maisonobe Date: Sun, 3 Feb 2008 19:29:04 +0000 Subject: [PATCH] removed warnings about unused variables git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@618065 13f79535-47bb-0310-9956-ffa450edef68 --- .../apache/commons/math/stat/inference/OneWayAnovaTest.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/test/org/apache/commons/math/stat/inference/OneWayAnovaTest.java b/src/test/org/apache/commons/math/stat/inference/OneWayAnovaTest.java index d4778f1d7..e71d8c1f4 100644 --- a/src/test/org/apache/commons/math/stat/inference/OneWayAnovaTest.java +++ b/src/test/org/apache/commons/math/stat/inference/OneWayAnovaTest.java @@ -78,7 +78,7 @@ public class OneWayAnovaTest extends TestCase { wrongContents.add(classC); wrongContents.add(wrongArray); try { - double bad = testStatistic.anovaFValue(wrongContents); + testStatistic.anovaFValue(wrongContents); fail("non double[] hash value for key classX, IllegalArgumentException expected"); } catch (IllegalArgumentException ex) { // expected @@ -88,7 +88,7 @@ public class OneWayAnovaTest extends TestCase { emptyContents.add(emptyArray); emptyContents.add(classC); try { - double bad = testStatistic.anovaFValue(emptyContents); + testStatistic.anovaFValue(emptyContents); fail("empty array for key classX, IllegalArgumentException expected"); } catch (IllegalArgumentException ex) { // expected @@ -97,7 +97,7 @@ public class OneWayAnovaTest extends TestCase { List tooFew = new ArrayList(); tooFew.add(classA); try { - double bad = testStatistic.anovaFValue(tooFew); + testStatistic.anovaFValue(tooFew); fail("less than two classes, IllegalArgumentException expected"); } catch (IllegalArgumentException ex) { // expected