Skip to content

Commit

Permalink
Fixed #170
Browse files Browse the repository at this point in the history
  • Loading branch information
Anuken committed Jun 5, 2024
1 parent 747560c commit 5f969ac
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions arc-core/src/arc/util/serialization/JsonValue.java
Original file line number Diff line number Diff line change
Expand Up @@ -981,6 +981,7 @@ public void addChild(JsonValue value){
while(true){
if(current.next == null){
current.next = value;
value.prev = current;
return;
}
current = current.next;
Expand Down

0 comments on commit 5f969ac

Please sign in to comment.