diff --git a/org.springframework.context/src/test/java/org/springframework/mapping/support/SpelMapperTests.java b/org.springframework.context/src/test/java/org/springframework/mapping/support/SpelMapperTests.java index 4529196c05a..a7328c121e9 100644 --- a/org.springframework.context/src/test/java/org/springframework/mapping/support/SpelMapperTests.java +++ b/org.springframework.context/src/test/java/org/springframework/mapping/support/SpelMapperTests.java @@ -198,7 +198,7 @@ public class SpelMapperTests { Person target = new Person(); - Mapper nestedMapper = new Mapper() { + Mapper nestedMapper = new Mapper() { public Object map(NestedDto source, Nested target) { target.foo = source.foo + " and baz"; return target;