Skip to content

Commit

Permalink
check style
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Jan 10, 2025
1 parent bed620a commit bc2451e
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4543,7 +4543,6 @@ public final LocalDate readLocalDate() {
int month = IOUtils.digit2(chars, offset + 5);
int dom = IOUtils.digit2(chars, offset + 8);


if ((year | month | dom) < 0) {
throw new JSONException(info("read date error"));
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5684,7 +5684,6 @@ public final LocalDate readLocalDate() {
int month = IOUtils.digit2(bytes, offset + 5);
int dom = IOUtils.digit2(bytes, offset + 8);


if ((year | month | dom) < 0) {
throw new JSONException(info("read date error"));
}
Expand Down

0 comments on commit bc2451e

Please sign in to comment.