Skip to content

Commit 629d636

Browse files
committed
Version 4.4.3
1 parent f1ec105 commit 629d636

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

pom.xml

+2-2
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.4.1-SNAPSHOT</version>
7+
<version>4.4.3</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>
@@ -133,7 +133,7 @@
133133
<dependency>
134134
<groupId>com.github.peteroupc</groupId>
135135
<artifactId>numbers</artifactId>
136-
<version>1.8.0</version>
136+
<version>1.7.4</version>
137137
</dependency>
138138
</dependencies>
139139
</project>

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,6 @@ public static CBORObject FromArray(final Object arr, PODOptions options,
358358
}
359359
return obj;
360360
}
361-
System.out.println("Array length "+length);
362361
for(int i = 0;i < length;i++) {
363362
obj.Add(CBORObject.FromObject(Array.get(arr,i), options,
364363
mapper, depth+1));
@@ -845,7 +844,7 @@ public static Object TypeToObject(CBORObject objThis, Type t,
845844
index++;
846845
}
847846
} else {
848-
System.out.println("class="+rawClass+","+realClass);
847+
// System.out.println("class="+rawClass+","+realClass);
849848
Map<String, CBORObject> dict;
850849
dict = new HashMap<String, CBORObject>();
851850
for (Map.Entry<String, CBORObject> kv : values) {
@@ -917,6 +916,7 @@ private static long FloorModLong(long longA, int longN) {
917916
return longA - (FloorDiv(longA, longN) * longN);
918917
}
919918

919+
920920
public static void BreakDownDateTime(java.util.Date bi,
921921
EInteger[] year, int[] lf) {
922922
if(TicksDivFracSeconds == 0)throw new IllegalStateException();

0 commit comments

Comments
 (0)