JAVA-6303: corrected formatting

This commit is contained in:
sampadawagde 2021-09-11 14:57:21 +05:30
parent 0595a35062
commit 8542ba368a
1 changed files with 3 additions and 3 deletions

View File

@ -34,9 +34,9 @@ public class SubTypeHandlingUnitTest {
public void givenSubType_whenNotUsingNoArgsConstructors_thenSucceed() throws IOException {
ObjectMapper mapper = new ObjectMapper();
PolymorphicTypeValidator ptv = BasicPolymorphicTypeValidator.builder()
.allowIfSubType("com.baeldung.jackson.inheritance")
.allowIfSubType("java.util.ArrayList")
.build();
.allowIfSubType("com.baeldung.jackson.inheritance")
.allowIfSubType("java.util.ArrayList")
.build();
mapper.activateDefaultTyping(ptv, ObjectMapper.DefaultTyping.NON_FINAL);
Car car = new Car("Mercedes-Benz", "S500", 5, 250.0);