mirror of
https://github.com/apache/commons-math.git
synced 2025-02-06 10:09:26 +00:00
fixed unused variable warnings
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1132471 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
e00a9b226f
commit
6e9f1d3945
@ -147,7 +147,7 @@ public class UnivariateRealPeriodicInterpolatorTest {
|
||||
|
||||
final UnivariateRealInterpolator interpolator
|
||||
= new UnivariateRealPeriodicInterpolator(new LinearInterpolator(), period);
|
||||
final UnivariateRealFunction f = interpolator.interpolate(xval, yval);
|
||||
interpolator.interpolate(xval, yval);
|
||||
}
|
||||
|
||||
@Test(expected=NonMonotonousSequenceException.class)
|
||||
@ -158,6 +158,6 @@ public class UnivariateRealPeriodicInterpolatorTest {
|
||||
|
||||
final UnivariateRealInterpolator interpolator
|
||||
= new UnivariateRealPeriodicInterpolator(new LinearInterpolator(), period);
|
||||
final UnivariateRealFunction f = interpolator.interpolate(xval, yval);
|
||||
interpolator.interpolate(xval, yval);
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user