Fixed actual parameter types to eliminate jdk 1.5 compiler warning.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@208874 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
39d8bd9af4
commit
98b8a03a7c
|
@ -127,8 +127,8 @@ public class CertifiedDataTest extends TestCase {
|
|||
} else {
|
||||
s = (SummaryStatistics) u;
|
||||
}
|
||||
|
||||
u.getClass().getDeclaredMethod("clear", null).invoke(u, null);
|
||||
u.getClass().getDeclaredMethod(
|
||||
"clear", new Class[]{}).invoke(u, new Object[]{});
|
||||
mean = Double.NaN;
|
||||
std = Double.NaN;
|
||||
|
||||
|
|
Loading…
Reference in New Issue