Remove redundant static modifier for enums

Closes gh-526
This commit is contained in:
Johnny Lim
2018-07-03 18:47:34 +09:00
committed by Andy Wilkinson
parent a2a9a7cb0f
commit 559357e211
2 changed files with 2 additions and 2 deletions

View File

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

View File

@@ -195,7 +195,7 @@ final class JsonFieldProcessor {
|| this.matchType == MatchType.NULL;
}
private static enum MatchType {
private enum MatchType {
ABSENT, MIXED, NONE, NULL, NON_NULL;