Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
bug fix for JSONReader.handleResovleTask
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed Dec 19, 2021
1 parent f33474b commit 9130f8e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/main/java/com/alibaba/fastjson/JSONReader.java
Original file line number Diff line number Diff line change
Expand Up @@ -246,6 +246,7 @@ public <T> T readObject(Class<T> type) {

readBefore();
T object = parser.parseObject(type);
parser.handleResovleTask(object);
readAfter();
return object;
}
Expand Down

0 comments on commit 9130f8e

Please sign in to comment.