We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d22e022 commit 9b1de8cCopy full SHA for 9b1de8c
src/test/java/com/upokecenter/test/JSONWithComments.java
@@ -514,7 +514,7 @@ private void SetPointer(CBORObject obj) {
514
private void PushPointer() {
515
if (this.currPointerStackSize > this.currPointer.size()) {
516
this.RaiseError("Internal error");
517
- };
+ }
518
if (this.currPointerStackSize == this.currPointer.size()) {
519
this.currPointer.add(CBORObject.Null);
520
} else {
@@ -525,7 +525,7 @@ private void PushPointer() {
525
private void PopPointer() {
526
if (this.currPointerStackSize < 0) {
527
528
529
--this.currPointerStackSize;
530
}
531
0 commit comments