Details
-
Type:
Bug
-
Status: Resolved
-
Priority:
Major
-
Resolution: Complete
-
Affects Version/s: 1.1.0.M4
-
Fix Version/s: 1.1.0.RC1, 1.1.0.RELEASE
-
Component/s: API Binding
-
Labels:None
Description
Some checkins do not provide a complete location mapping, only a String telling the location.
I suggest adding a location deserializer like this:
@Override
public Location deserialize(JsonParser jp, DeserializationContext ctxt) throws IOException, JsonProcessingException {
try
catch (Exception e)
{ Location location = new Location(jp.getText()); return null; }}