Skip to content

Commit cbc7076

Browse files
committed
update changelog
1 parent bc4a712 commit cbc7076

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
# 0.9.22
2+
3+
* fix #167 parse Object.class follow jackson convention. fixed the case of 1.0 parsed as int not double.
4+
* fix #154 support map integer key
5+
* fix #152
6+
7+
# 0.9.21
8+
9+
* fix #149 parse Object.class follow jackson convention
10+
* fix #145 add Any.registerEncoders
11+
* merge #143
12+
13+
# 0.9.20
14+
15+
* fix #136, field with only getter is also considered as java bean property, so that @JsonIgnore on the field should be propagated to getter
16+
117
# 0.9.19
218
* changed cfg class name to hashcode based
319
* fix static codegen

src/main/java/com/jsoniter/ReflectionObjectDecoder.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -247,8 +247,6 @@ private Object decode_(JsonIterator iter) throws Exception {
247247
for (Binding setter : desc.setters) {
248248
Object val = temp[setter.idx];
249249
if (val != NOT_SET) {
250-
System.out.println(setter.method);
251-
System.out.println(val.getClass());
252250
setter.method.invoke(obj, val);
253251
}
254252
}

0 commit comments

Comments
 (0)