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 d5b030f commit 091e10eCopy full SHA for 091e10e
src/main/java/com/upokecenter/cbor/CBORObject.java
@@ -7312,9 +7312,9 @@ private static int MapCompare(
7312
ArrayList<CBORObject> sortedASet = new ArrayList<CBORObject>(mapA.keySet());
7313
ArrayList<CBORObject> sortedBSet = new ArrayList<CBORObject>(mapB.keySet());
7314
// System.out.println("---sorting mapA's keys");
7315
- java.util.Collections.sort(sortedASet);
+ // java.util.Collections.sort(sortedASet);
7316
// System.out.println("---sorting mapB's keys");
7317
- java.util.Collections.sort(sortedBSet);
+ // java.util.Collections.sort(sortedBSet);
7318
// System.out.println("---done sorting");
7319
listACount = sortedASet.size();
7320
listBCount = sortedBSet.size();
0 commit comments