Skip to content

Commit

Permalink
fixed error of not using given factory in JsonConfigurationFactory (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-hegner authored and arteam committed Jun 8, 2017
1 parent 9301fbf commit 91f3421
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ public JsonConfigurationFactory(Class<T> klass,
Validator validator,
ObjectMapper objectMapper,
String propertyPrefix) {
super(new JsonFactory(), JsonFactory.FORMAT_NAME_JSON, klass, validator, objectMapper, propertyPrefix);
super(objectMapper.getFactory(), JsonFactory.FORMAT_NAME_JSON, klass, validator, objectMapper, propertyPrefix);
}
}

0 comments on commit 91f3421

Please sign in to comment.