Skip to content

Commit

Permalink
update Java version
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed Dec 8, 2021
1 parent d22e022 commit 9b1de8c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/java/com/upokecenter/test/JSONWithComments.java
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ private void SetPointer(CBORObject obj) {
private void PushPointer() {
if (this.currPointerStackSize > this.currPointer.size()) {
this.RaiseError("Internal error");
};
}
if (this.currPointerStackSize == this.currPointer.size()) {
this.currPointer.add(CBORObject.Null);
} else {
Expand All @@ -525,7 +525,7 @@ private void PushPointer() {
private void PopPointer() {
if (this.currPointerStackSize < 0) {
this.RaiseError("Internal error");
};
}
--this.currPointerStackSize;
}

Expand Down

0 comments on commit 9b1de8c

Please sign in to comment.