Avoid some Findbugs complaints

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/branches/MATH_2_X@1066395 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastian Bazley 2011-02-02 09:46:21 +00:00
parent 0fcb5ce9ee
commit 9b336b0699
2 changed files with 2 additions and 0 deletions

View File

@ -106,6 +106,7 @@ public final class BicubicSplineInterpolatingFunctionTest {
} catch (DimensionMismatchException e) {
// Expected
}
Assert.assertNotNull(bcf); // Avoid Findbugs "dead store" warning
}
/**

View File

@ -265,6 +265,7 @@ public final class TricubicSplineInterpolatingFunctionTest {
} catch (DimensionMismatchException e) {
// Expected
}
Assert.assertNotNull(tcf); // Avoid Findbugs "dead store" warning
}
/**