Skip to content

Commit 091e10e

Browse files
committed
update Java version
1 parent d5b030f commit 091e10e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/java/com/upokecenter/cbor/CBORObject.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7312,9 +7312,9 @@ private static int MapCompare(
73127312
ArrayList<CBORObject> sortedASet = new ArrayList<CBORObject>(mapA.keySet());
73137313
ArrayList<CBORObject> sortedBSet = new ArrayList<CBORObject>(mapB.keySet());
73147314
// System.out.println("---sorting mapA's keys");
7315-
java.util.Collections.sort(sortedASet);
7315+
// java.util.Collections.sort(sortedASet);
73167316
// System.out.println("---sorting mapB's keys");
7317-
java.util.Collections.sort(sortedBSet);
7317+
// java.util.Collections.sort(sortedBSet);
73187318
// System.out.println("---done sorting");
73197319
listACount = sortedASet.size();
73207320
listBCount = sortedBSet.size();

0 commit comments

Comments
 (0)