#583 - Updated Jackson version to 2.9.0.pr for Spring 5 compatibility in build profile.

Fixed super constructor invocation to avoid NullPointerException in super class.
This commit is contained in:
Oliver Gierke
2017-05-16 13:26:57 +02:00
parent d68700231e
commit 6bed9bec40
2 changed files with 2 additions and 1 deletions

View File

@@ -610,7 +610,7 @@ public class Jackson2HalModule extends SimpleModule {
}
public HalResourcesDeserializer(JavaType vc) {
this(null, vc);
this(TypeFactory.defaultInstance().constructCollectionLikeType(List.class, vc), vc);
}
private HalResourcesDeserializer(JavaType type, JavaType contentType) {