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:
parent
bdcd470267
commit
8a8d0c016f
|
@ -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;
|
||||
|
|
|
@ -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";
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue