Skip to content

Commit 76cbedb

Browse files
authored
Merge pull request #47 from epics-base/issue-46
issue-46, copy-paste error in JsonArrays
2 parents d1904f4 + 75169df commit 76cbedb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

epics-vtype/vtype-json/src/main/java/org/epics/vtype/json/JsonArrays.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -302,7 +302,7 @@ public static JsonArrayBuilder fromListNumber(ListNumber list) {
302302
for (int i = 0; i < list.size(); i++) {
303303
b.add(list.getInt(i));
304304
}
305-
} else if (list instanceof ListLong || list instanceof ListInteger) {
305+
} else if (list instanceof ListLong || list instanceof ListUInteger) {
306306
for (int i = 0; i < list.size(); i++) {
307307
b.add(list.getLong(i));
308308
}

0 commit comments

Comments
 (0)