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:
parent
0fcb5ce9ee
commit
9b336b0699
|
@ -106,6 +106,7 @@ public final class BicubicSplineInterpolatingFunctionTest {
|
|||
} catch (DimensionMismatchException e) {
|
||||
// Expected
|
||||
}
|
||||
Assert.assertNotNull(bcf); // Avoid Findbugs "dead store" warning
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -265,6 +265,7 @@ public final class TricubicSplineInterpolatingFunctionTest {
|
|||
} catch (DimensionMismatchException e) {
|
||||
// Expected
|
||||
}
|
||||
Assert.assertNotNull(tcf); // Avoid Findbugs "dead store" warning
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue