This commit is contained in:
Keith Donald 2009-10-07 19:37:07 +00:00
parent 8fe055b0e0
commit e3983fe796
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ public class SpelMapperTests {
Person target = new Person(); Person target = new Person();
Mapper nestedMapper = new Mapper<NestedDto, Nested>() { Mapper<NestedDto, Nested> nestedMapper = new Mapper<NestedDto, Nested>() {
public Object map(NestedDto source, Nested target) { public Object map(NestedDto source, Nested target) {
target.foo = source.foo + " and baz"; target.foo = source.foo + " and baz";
return target; return target;