Added an empty implementation of the missing setExclude() method so that the class compiles.

This commit is contained in:
Sam Brannen 2009-10-08 13:25:43 +00:00
parent 96cfa0c37d
commit 66550c3340
1 changed files with 6 additions and 0 deletions

View File

@ -29,6 +29,7 @@ import org.springframework.mapping.MappingFailure;
/** /**
* An individual mapping definition between two fields. * An individual mapping definition between two fields.
* @author Keith Donald * @author Keith Donald
* @since 3.0
*/ */
class Mapping implements MappingConfiguration { class Mapping implements MappingConfiguration {
@ -95,4 +96,9 @@ class Mapping implements MappingConfiguration {
return "[Mapping<" + getSourceExpressionString() + " -> " + getTargetExpressionString() + ">]"; return "[Mapping<" + getSourceExpressionString() + " -> " + getTargetExpressionString() + ">]";
} }
@Override
public void setExclude() {
// TODO Auto-generated method stub
}
} }