Skip to content

Commit

Permalink
kernel/{JsonParser,ToJson}: correctly store/read in the variable sort
Browse files Browse the repository at this point in the history
  • Loading branch information
ehildenb committed Aug 10, 2023
1 parent c7609c4 commit bbecbb8
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ private static K toK(JsonObject data) {
case KVARIABLE:
Att varAtt = Att.empty();
if (data.containsKey("sort")) {
varAtt.add(Sort.class, toSort(data.getJsonObject("sort")));
varAtt = varAtt.add(Sort.class, toSort(data.getJsonObject("sort")));
}
return KVariable(data.getString("name"), varAtt);

Expand Down

0 comments on commit bbecbb8

Please sign in to comment.