Skip to content

Commit 9b1de8c

Browse files
committed
update Java version
1 parent d22e022 commit 9b1de8c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/test/java/com/upokecenter/test/JSONWithComments.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@ private void SetPointer(CBORObject obj) {
514514
private void PushPointer() {
515515
if (this.currPointerStackSize > this.currPointer.size()) {
516516
this.RaiseError("Internal error");
517-
};
517+
}
518518
if (this.currPointerStackSize == this.currPointer.size()) {
519519
this.currPointer.add(CBORObject.Null);
520520
} else {
@@ -525,7 +525,7 @@ private void PushPointer() {
525525
private void PopPointer() {
526526
if (this.currPointerStackSize < 0) {
527527
this.RaiseError("Internal error");
528-
};
528+
}
529529
--this.currPointerStackSize;
530530
}
531531

0 commit comments

Comments
 (0)