Skip to content

Commit

Permalink
Merge branch 'master' of github.com:FasterXML/jackson-databind
Browse files Browse the repository at this point in the history
  • Loading branch information
cowtowncoder committed Sep 15, 2014
2 parents 6cf6585 + 4865f14 commit 8667b6d
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ Main differences compared to 1.0 "mapper" jar are:

# Further reading

* [Documentation](https://github.com/FasterXML/jackson-databind/wiki/Documentation)
* [Documentation](https://github.com/FasterXML/jackson-databind/wiki)

Related:

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<parent>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-parent</artifactId>
<version>2.5-SNAPSHOT</version>
<version>2.5-rc1</version>
</parent>

<groupId>com.fasterxml.jackson.core</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public enum DeserializationFeature implements ConfigFeature
* kinds of JSON values); if enable, empty JSON String can be taken
* to be equivalent of JSON null.
*<p>
* Feature is enabled by default.
* Feature is disabled by default.
*/
ACCEPT_EMPTY_STRING_AS_NULL_OBJECT(false),

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
package com.fasterxml.jackson.databind.ser.std;

import java.io.IOException;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;

import com.fasterxml.jackson.core.*;
Expand All @@ -15,7 +14,6 @@
import com.fasterxml.jackson.databind.ser.ContainerSerializer;
import com.fasterxml.jackson.databind.ser.ContextualSerializer;
import com.fasterxml.jackson.databind.ser.impl.PropertySerializerMap;
import com.fasterxml.jackson.databind.type.TypeFactory;

/**
* Base class for serializers that will output contents as JSON
Expand Down

0 comments on commit 8667b6d

Please sign in to comment.