Skip to content

Commit

Permalink
Version 4.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
peteroupc committed May 13, 2021
1 parent f1ec105 commit 629d636
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.upokecenter</groupId>
<artifactId>cbor</artifactId>
<packaging>jar</packaging>
<version>4.4.1-SNAPSHOT</version>
<version>4.4.3</version>
<name>CBOR (Concise Binary Object Representation)</name>
<description>A Java implementation of Concise Binary Object Representation (CBOR), a general-purpose binary data format defined in RFC 8949.</description>
<url>https://github.com/peteroupc/CBOR-Java</url>
Expand Down Expand Up @@ -133,7 +133,7 @@
<dependency>
<groupId>com.github.peteroupc</groupId>
<artifactId>numbers</artifactId>
<version>1.8.0</version>
<version>1.7.4</version>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions src/main/java/com/upokecenter/cbor/PropertyMap.java
Original file line number Diff line number Diff line change
Expand Up @@ -358,7 +358,6 @@ public static CBORObject FromArray(final Object arr, PODOptions options,
}
return obj;
}
System.out.println("Array length "+length);
for(int i = 0;i < length;i++) {
obj.Add(CBORObject.FromObject(Array.get(arr,i), options,
mapper, depth+1));
Expand Down Expand Up @@ -845,7 +844,7 @@ public static Object TypeToObject(CBORObject objThis, Type t,
index++;
}
} else {
System.out.println("class="+rawClass+","+realClass);
// System.out.println("class="+rawClass+","+realClass);
Map<String, CBORObject> dict;
dict = new HashMap<String, CBORObject>();
for (Map.Entry<String, CBORObject> kv : values) {
Expand Down Expand Up @@ -917,6 +916,7 @@ private static long FloorModLong(long longA, int longN) {
return longA - (FloorDiv(longA, longN) * longN);
}


public static void BreakDownDateTime(java.util.Date bi,
EInteger[] year, int[] lf) {
if(TicksDivFracSeconds == 0)throw new IllegalStateException();
Expand Down

0 comments on commit 629d636

Please sign in to comment.