Skip to content
This repository was archived by the owner on Oct 3, 2021. It is now read-only.

Commit f7045e6

Browse files
committed
Fix my formatting questions on #1008
1 parent c6f16c6 commit f7045e6

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

java/java-ranger-regression/nanoxml_eqchk/prop1/Main.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public static void main(String[] args) {
1515
char c8 = Verifier.nondetChar();
1616
DumpXML d = new DumpXML();
1717
int out1 = d.mainProcess(c0, c1, c2, c3, c4, c5, c6, c7, c8);
18-
d.numIdentifiers = 0; // commenting this line out causes the equivalence check to fail
18+
DumpXML.numIdentifiers = 0; // commenting this line out causes the equivalence check to fail
1919
int out2 = d.mainProcess(c0, c1, c2, c3, c4, c5, c6, c7, c8);
2020
checkEquality(out1, out2);
2121
}

java/java-ranger-regression/nanoxml_eqchk/prop2/Main.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ public static void main(String[] args) {
1515
char c8 = '>'; //Verifier.nondetChar();
1616
DumpXML d = new DumpXML();
1717
int out1 = d.mainProcess(c0, c1, c2, c3, c4, c5, c6, c7, c8);
18-
// d.numIdentifiers = 0; // commenting this line out causes the equivalence check to fail
1918
int out2 = d.mainProcess(c0, c1, c2, c3, c4, c5, c6, c7, c8);
2019
checkEquality(out1, out2);
2120
}

0 commit comments

Comments
 (0)