Update auto-configured ParameterNamesModule to use DEFAULT creator mode

The PROPERTIES creator mode has the unfortunate side-effect of stopping
mixins from working. This commit updates the auto-configured module to
use the DEFAULT creator mode instead.

Closes gh-4336
This commit is contained in:
Andy Wilkinson
2015-10-29 15:40:01 +00:00
parent 7742dafccf
commit eaa4d900eb
2 changed files with 2 additions and 2 deletions

View File

@@ -413,7 +413,7 @@ public class JacksonAutoConfigurationTests {
@Test
public void parameterNamesModuleIsAutoConfigured() {
assertParameterNamesModuleCreatorBinding(Mode.PROPERTIES,
assertParameterNamesModuleCreatorBinding(Mode.DEFAULT,
JacksonAutoConfiguration.class);
}