Skip to content

Commit

Permalink
fix #120
Browse files Browse the repository at this point in the history
  • Loading branch information
wenshao committed May 1, 2022
1 parent 833b8dc commit b7a0583
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions core/src/main/java/com/alibaba/fastjson2/JSONObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,16 @@ public Object get(Object key) {
return super.get(key);
}

@Override
public Set<Map.Entry<String, Object>> entrySet() {
return super.entrySet();
}

@Override
public Set<String> keySet() {
return super.keySet();
}

@Override
public boolean containsKey(Object key) {
boolean result = super.containsKey(key);
Expand Down

0 comments on commit b7a0583

Please sign in to comment.