File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed
src/main/java/com/fasterxml/jackson/databind Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -376,7 +376,7 @@ Main differences compared to 1.0 "mapper" jar are:
376
376
377
377
# Further reading
378
378
379
- * [ Documentation] ( https://github.com/FasterXML/jackson-databind/wiki/Documentation )
379
+ * [ Documentation] ( https://github.com/FasterXML/jackson-databind/wiki )
380
380
381
381
Related:
382
382
Original file line number Diff line number Diff line change 5
5
<parent >
6
6
<groupId >com.fasterxml.jackson</groupId >
7
7
<artifactId >jackson-parent</artifactId >
8
- <version >2.5-SNAPSHOT </version >
8
+ <version >2.5-rc1 </version >
9
9
</parent >
10
10
11
11
<groupId >com.fasterxml.jackson.core</groupId >
Original file line number Diff line number Diff line change @@ -246,7 +246,7 @@ public enum DeserializationFeature implements ConfigFeature
246
246
* kinds of JSON values); if enable, empty JSON String can be taken
247
247
* to be equivalent of JSON null.
248
248
*<p>
249
- * Feature is enabled by default.
249
+ * Feature is disabled by default.
250
250
*/
251
251
ACCEPT_EMPTY_STRING_AS_NULL_OBJECT (false ),
252
252
Original file line number Diff line number Diff line change 1
1
package com .fasterxml .jackson .databind .ser .std ;
2
2
3
3
import java .io .IOException ;
4
- import java .lang .reflect .ParameterizedType ;
5
4
import java .lang .reflect .Type ;
6
5
7
6
import com .fasterxml .jackson .core .*;
15
14
import com .fasterxml .jackson .databind .ser .ContainerSerializer ;
16
15
import com .fasterxml .jackson .databind .ser .ContextualSerializer ;
17
16
import com .fasterxml .jackson .databind .ser .impl .PropertySerializerMap ;
18
- import com .fasterxml .jackson .databind .type .TypeFactory ;
19
17
20
18
/**
21
19
* Base class for serializers that will output contents as JSON
You can’t perform that action at this time.
0 commit comments