Skip to content

Commit

Permalink
Remove unnecessary semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
Philzen committed Apr 26, 2024
1 parent fc51d1e commit 689cabc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 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
4 changes: 2 additions & 2 deletions src/main/java/com/fasterxml/jackson/core/JsonParser.java
Expand Up @@ -39,7 +39,7 @@ public abstract class JsonParser
*/
public enum NumberType {
INT, LONG, BIG_INTEGER, FLOAT, DOUBLE, BIG_DECIMAL
};
}

/**
* Default set of {@link StreamReadCapability}ies that may be used as
Expand Down Expand Up @@ -1230,7 +1230,7 @@ public Boolean nextBooleanValue() throws IOException {
* @since 2.8
*/
public void finishToken() throws IOException {
; // nothing
// nothing
}

/*
Expand Down

0 comments on commit 689cabc

Please sign in to comment.