removed warnings about internal test classes that should have been declared static

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@567819 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Luc Maisonobe 2007-08-20 20:27:01 +00:00
parent bdcd470267
commit 8a8d0c016f
2 changed files with 3 additions and 3 deletions

View File

@ -65,7 +65,7 @@ public class RandomAdaptorTest extends RandomDataTest {
* "Powered by Eclipse ;-)"
*
*/
private class ConstantGenerator implements RandomGenerator {
private static class ConstantGenerator implements RandomGenerator {
public boolean nextBoolean() {
return false;

View File

@ -190,13 +190,13 @@ public final class MixedListUnivariateImplTest extends TestCase {
}
public final class Foo {
public static final class Foo {
public String heresFoo() {
return "14.9";
}
}
public final class Bar {
public static final class Bar {
public String heresBar() {
return "12.0";
}