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
@@ -22,22 +22,22 @@ import java.util.List;
public class SetTarget2TreeItem extends TreeItem {
public GraphTargetItem target;
public GraphTargetItem target;
public SetTarget2TreeItem(GraphSourceItem instruction, GraphTargetItem target) {
super(instruction, PRECEDENCE_PRIMARY);
this.target = target;
}
public SetTarget2TreeItem(GraphSourceItem instruction, GraphTargetItem target) {
super(instruction, PRECEDENCE_PRIMARY);
this.target = target;
}
@Override
public String toString(ConstantPool constants) {
return hilight("tellTarget(") + target.toString(constants) + hilight(")");
}
@Override
public String toString(ConstantPool constants) {
return hilight("tellTarget(") + target.toString(constants) + hilight(")");
}
@Override
public List<com.jpexs.decompiler.flash.graph.GraphSourceItemPos> getNeededSources() {
List<com.jpexs.decompiler.flash.graph.GraphSourceItemPos> ret = super.getNeededSources();
ret.addAll(target.getNeededSources());
return ret;
}
@Override
public List<com.jpexs.decompiler.flash.graph.GraphSourceItemPos> getNeededSources() {
List<com.jpexs.decompiler.flash.graph.GraphSourceItemPos> ret = super.getNeededSources();
ret.addAll(target.getNeededSources());
return ret;
}
}