@ -97,7 +97,7 @@ public class SpelMapper implements Mapper<Object, Object> {
@@ -97,7 +97,7 @@ public class SpelMapper implements Mapper<Object, Object> {
public Object map ( Object source , Object target ) {
try {
Spel MappingContextHolder. push ( source ) ;
MappingContextHolder . push ( source ) ;
EvaluationContext sourceContext = getEvaluationContext ( source ) ;
EvaluationContext targetContext = getEvaluationContext ( target ) ;
List < MappingFailure > failures = new LinkedList < MappingFailure > ( ) ;
@ -113,7 +113,7 @@ public class SpelMapper implements Mapper<Object, Object> {
@@ -113,7 +113,7 @@ public class SpelMapper implements Mapper<Object, Object> {
}
return target ;
} finally {
Spel MappingContextHolder. pop ( ) ;
MappingContextHolder . pop ( ) ;
}
}
@ -124,7 +124,7 @@ public class SpelMapper implements Mapper<Object, Object> {
@@ -124,7 +124,7 @@ public class SpelMapper implements Mapper<Object, Object> {
private void doMap ( SpelMapping mapping , EvaluationContext sourceContext , EvaluationContext targetContext ,
List < MappingFailure > failures ) {
if ( logger . isDebugEnabled ( ) ) {
logger . debug ( Spel MappingContextHolder. getLevel ( ) + mapping ) ;
logger . debug ( MappingContextHolder . getLevel ( ) + mapping ) ;
}
mapping . map ( sourceContext , targetContext , failures ) ;
}