Fixed compiler warnings.

Project: http://git-wip-us.apache.org/repos/asf/commons-math/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-math/commit/6814a35c
Tree: http://git-wip-us.apache.org/repos/asf/commons-math/tree/6814a35c
Diff: http://git-wip-us.apache.org/repos/asf/commons-math/diff/6814a35c

Branch: refs/heads/MATH_3_X
Commit: 6814a35ce6ce23001bc261dcb0f2f1c46306b7da
Parents: 6b4bf61
Author: Luc Maisonobe <l...@apache.org>
Authored: Fri Dec 25 14:58:28 2015 +0100
Committer: Luc Maisonobe <l...@apache.org>
Committed: Fri Dec 25 14:58:28 2015 +0100

----------------------------------------------------------------------
 .../interpolation/PiecewiseBicubicSplineInterpolatorTest.java      | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-math/blob/6814a35c/src/test/java/org/apache/commons/math3/analysis/interpolation/PiecewiseBicubicSplineInterpolatorTest.java
----------------------------------------------------------------------
diff --git 
a/src/test/java/org/apache/commons/math3/analysis/interpolation/PiecewiseBicubicSplineInterpolatorTest.java
 
b/src/test/java/org/apache/commons/math3/analysis/interpolation/PiecewiseBicubicSplineInterpolatorTest.java
index 367971b..08e1b69 100644
--- 
a/src/test/java/org/apache/commons/math3/analysis/interpolation/PiecewiseBicubicSplineInterpolatorTest.java
+++ 
b/src/test/java/org/apache/commons/math3/analysis/interpolation/PiecewiseBicubicSplineInterpolatorTest.java
@@ -18,7 +18,6 @@ package org.apache.commons.math3.analysis.interpolation;
 
 import org.apache.commons.math3.exception.DimensionMismatchException;
 import org.apache.commons.math3.exception.InsufficientDataException;
-import org.apache.commons.math3.exception.MathIllegalArgumentException;
 import org.apache.commons.math3.exception.NonMonotonicSequenceException;
 import org.apache.commons.math3.exception.NullArgumentException;
 import org.apache.commons.math3.analysis.BivariateFunction;
@@ -41,7 +40,6 @@ public final class PiecewiseBicubicSplineInterpolatorTest {
         double[] yval = new double[] { -4, -3, -1, 2.5, 3.5 };
         double[][] zval = new double[xval.length][yval.length];
 
-        @SuppressWarnings( "unused" )
         BivariateGridInterpolator interpolator = new 
PiecewiseBicubicSplineInterpolator();
 
         try {

Reply via email to