Polishing

This commit is contained in:
Juergen Hoeller
2018-11-05 23:51:54 +01:00
parent f002ebd976
commit 79e7ba71bb
2 changed files with 16 additions and 14 deletions

View File

@@ -194,7 +194,7 @@ public class StandardEvaluationContext implements EvaluationContext {
@Override
public TypeConverter getTypeConverter() {
if (this.typeConverter == null) {
this.typeConverter = new StandardTypeConverter();
this.typeConverter = new StandardTypeConverter();
}
return this.typeConverter;
}
@@ -224,7 +224,7 @@ public class StandardEvaluationContext implements EvaluationContext {
this.variables.put(name, value);
}
public void setVariables(Map<String,Object> variables) {
public void setVariables(Map<String, Object> variables) {
this.variables.putAll(variables);
}