Skip to content

Commit

Permalink
MAX_EXP 1023 -> 2048
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Jun 25, 2024
1 parent 54cfd78 commit 56c45e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/java/com/alibaba/fastjson2/JSONReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

public abstract class JSONReader
implements Closeable {
static final int MAX_EXP = 1023;
static final int MAX_EXP = 2047;

static final byte JSON_TYPE_INT = 1;
static final byte JSON_TYPE_DEC = 2;
Expand Down

0 comments on commit 56c45e6

Please sign in to comment.