Skip to content

Commit 626acf4

Browse files
committed
Version 4.5.1
1 parent 327293c commit 626acf4

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ project, add the following to the `dependencies` section in your `pom.xml` file:
2222
<dependency>
2323
<groupId>com.upokecenter</groupId>
2424
<artifactId>cbor</artifactId>
25-
<version>4.5</version>
25+
<version>4.5.1</version>
2626
</dependency>
2727
```
2828

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.upokecenter</groupId>
55
<artifactId>cbor</artifactId>
66
<packaging>jar</packaging>
7-
<version>4.5.1-SNAPSHOT</version>
7+
<version>4.5.1</version>
88
<name>CBOR (Concise Binary Object Representation)</name>
99
<description>A Java implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 8949.</description>
1010
<url>https://github.com/peteroupc/CBOR-Java</url>

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

+2-2
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)