From e3983fe796524cf766148d474c36d168eeb06991 Mon Sep 17 00:00:00 2001 From: Keith Donald Date: Wed, 7 Oct 2009 19:37:07 +0000 Subject: [PATCH] polish --- .../org/springframework/mapping/support/SpelMapperTests.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;