Suppress unused variable warnings

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@927440 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2010-03-25 15:08:40 +00:00
parent 5eeb11e8e1
commit 0ebd188e03
2 changed files with 2 additions and 0 deletions

View File

@ -37,6 +37,7 @@ public final class BicubicSplineInterpolatingFunctionTest {
double[] yval = new double[] {-4, -3, -1, 2.5};
double[][] zval = new double[xval.length][yval.length];
@SuppressWarnings("unused")
BivariateRealFunction bcf = new BicubicSplineInterpolatingFunction(xval, yval, zval,
zval, zval, zval);

View File

@ -39,6 +39,7 @@ public final class SmoothingBicubicSplineInterpolatorTest {
BivariateRealGridInterpolator interpolator = new SmoothingBicubicSplineInterpolator();
@SuppressWarnings("unused")
BivariateRealFunction p = interpolator.interpolate(xval, yval, zval);
double[] wxval = new double[] {3, 2, 5, 6.5};