Skip to content

Commit

Permalink
Remove unnecessary semicolon (#1280)
Browse files Browse the repository at this point in the history
  • Loading branch information
Philzen committed Apr 28, 2024
1 parent 0c6c025 commit 08aa368
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Expand Up @@ -43,7 +43,6 @@ public enum PaddingReadBehaviour {
* padding characters are used.
*/
PADDING_ALLOWED
;
}

private final static int INT_SPACE = 0x20;
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/fasterxml/jackson/core/JsonParser.java
Expand Up @@ -79,7 +79,7 @@ public enum NumberTypeFP {
* exact binary representation whereas {@code 0.25} has exact representation
* in every binary type supported)
*/
UNKNOWN;
UNKNOWN
}

/**
Expand Down

0 comments on commit 08aa368

Please sign in to comment.