Skip to content

Commit

Permalink
[PSym] Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
aman-goel committed Oct 7, 2023
1 parent 95ee194 commit 49f65d1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -390,7 +390,7 @@ public int computeConcreteHash() {
public Map<K, Object> computeConcreteValue() {
Map<K, Object> value = new HashMap<>();
for (Map.Entry<K, V> entry : this.entries.entrySet()) {
value.put(entry.getKey(), entry.getValue().computeConcreteValue());
value.put(entry.getKey(), entry.getValue() == null ? null : entry.getValue().getConcreteValue());
}
return value;
}
Expand Down

0 comments on commit 49f65d1

Please sign in to comment.