Fix modifiers order
See gh-11681
This commit is contained in:
committed by
Stephane Nicoll
parent
322a629b53
commit
e2d05607f2
@@ -73,7 +73,7 @@ public class FilteredClassLoader extends URLClassLoader {
|
||||
/**
|
||||
* Filter to restrict the classes that can be loaded.
|
||||
*/
|
||||
public final static class ClassFilter implements Predicate<String> {
|
||||
public static final class ClassFilter implements Predicate<String> {
|
||||
|
||||
private Class<?>[] hiddenClasses;
|
||||
|
||||
@@ -100,7 +100,7 @@ public class FilteredClassLoader extends URLClassLoader {
|
||||
/**
|
||||
* Filter to restrict the packages that can be loaded.
|
||||
*/
|
||||
public final static class PackageFilter implements Predicate<String> {
|
||||
public static final class PackageFilter implements Predicate<String> {
|
||||
|
||||
private final String[] hiddenPackages;
|
||||
|
||||
|
||||
@@ -354,7 +354,7 @@ public abstract class AbstractJsonMarshalTester<T> {
|
||||
*
|
||||
* @param <M> The marshaller type
|
||||
*/
|
||||
protected static abstract class FieldInitializer<M> {
|
||||
protected abstract static class FieldInitializer<M> {
|
||||
|
||||
private final Class<?> testerClass;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user