Remove redundant static modifier for enums
Closes gh-526
This commit is contained in:
committed by
Andy Wilkinson
parent
a2a9a7cb0f
commit
559357e211
@@ -127,7 +127,7 @@ final class JsonFieldPath {
|
||||
/**
|
||||
* The type of a field path.
|
||||
*/
|
||||
static enum PathType {
|
||||
enum PathType {
|
||||
|
||||
/**
|
||||
* The path identifies a single item in the payload.
|
||||
|
||||
@@ -195,7 +195,7 @@ final class JsonFieldProcessor {
|
||||
|| this.matchType == MatchType.NULL;
|
||||
}
|
||||
|
||||
private static enum MatchType {
|
||||
private enum MatchType {
|
||||
|
||||
ABSENT, MIXED, NONE, NULL, NON_NULL;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user