Skip to content

Commit

Permalink
comment cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Feb 21, 2024
1 parent b86ef5a commit e6d9b6d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -133,10 +133,10 @@ public Object read(JSONReader reader, JsonParser p) throws IOException
case SER_NUMBER_DOUBLE:
return p.getValueAsDouble();

case SER_NUMBER_BYTE: // fall through
case SER_NUMBER_BYTE:
return (byte) p.getValueAsInt();

case SER_NUMBER_SHORT: // fall through
case SER_NUMBER_SHORT:
return (short) p.getValueAsInt();
case SER_NUMBER_INTEGER_WRAPPER:
if (p.hasToken(JsonToken.VALUE_NULL)) {
Expand Down

0 comments on commit e6d9b6d

Please sign in to comment.