Delete trailing whitespace in Java source code

This commit is contained in:
Sam Brannen
2015-06-19 17:09:52 +02:00
parent b36c9f9f23
commit 078d252d1e
8 changed files with 13 additions and 13 deletions

View File

@@ -184,7 +184,7 @@ public class ExpressionState {
public void enterScope() {
ensureVariableScopesInitialized();
this.variableScopes.push(new VariableScope(Collections.<String,Object>emptyMap()));
this.scopeRootObjects.push(getActiveContextObject());
this.scopeRootObjects.push(getActiveContextObject());
}
public void enterScope(String name, Object value) {