Issue #45 Unicode character cannot save

Code formatting
This commit is contained in:
Jindra Pet��k
2013-03-30 16:43:26 +01:00
parent d3bd9b641d
commit be106cc34b
772 changed files with 84378 additions and 84353 deletions
@@ -27,21 +27,21 @@ import java.util.Stack;
public class ActionGetVariable extends Action {
public ActionGetVariable() {
super(0x1C, 0);
}
public ActionGetVariable() {
super(0x1C, 0);
}
@Override
public String toString() {
return "GetVariable";
}
@Override
public String toString() {
return "GetVariable";
}
@Override
public void translate(Stack<GraphTargetItem> stack, List<GraphTargetItem> output, java.util.HashMap<Integer, String> regNames, HashMap<String, GraphTargetItem> variables, HashMap<String, GraphTargetItem> functions) {
GraphTargetItem name = stack.pop();
GraphTargetItem computedVal = variables.get(Highlighting.stripHilights(name.toStringNoQuotes((ConstantPool)null)));
GetVariableTreeItem gvt = new GetVariableTreeItem(this, name);
gvt.setComputedValue(computedVal);
stack.push(gvt);
}
@Override
public void translate(Stack<GraphTargetItem> stack, List<GraphTargetItem> output, java.util.HashMap<Integer, String> regNames, HashMap<String, GraphTargetItem> variables, HashMap<String, GraphTargetItem> functions) {
GraphTargetItem name = stack.pop();
GraphTargetItem computedVal = variables.get(Highlighting.stripHilights(name.toStringNoQuotes((ConstantPool) null)));
GetVariableTreeItem gvt = new GetVariableTreeItem(this, name);
gvt.setComputedValue(computedVal);
stack.push(gvt);
}
}