Avoid unnecessary generics on emptyMap/Set/List
This commit is contained in:
@@ -183,7 +183,7 @@ public class ExpressionState {
|
||||
|
||||
public void enterScope() {
|
||||
ensureVariableScopesInitialized();
|
||||
this.variableScopes.push(new VariableScope(Collections.<String,Object>emptyMap()));
|
||||
this.variableScopes.push(new VariableScope(Collections.emptyMap()));
|
||||
this.scopeRootObjects.push(getActiveContextObject());
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user