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:
Phil Steitz 2005-07-02 22:24:59 +00:00
parent 39d8bd9af4
commit 98b8a03a7c
1 changed files with 2 additions and 2 deletions

View File

@ -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;