diff --git a/trunk/src/com/jpexs/decompiler/flash/SourceGeneratorLocalData.java b/trunk/src/com/jpexs/decompiler/flash/SourceGeneratorLocalData.java index fe0b700b5..4845dea4e 100644 --- a/trunk/src/com/jpexs/decompiler/flash/SourceGeneratorLocalData.java +++ b/trunk/src/com/jpexs/decompiler/flash/SourceGeneratorLocalData.java @@ -35,15 +35,16 @@ public class SourceGeneratorLocalData implements Serializable { //public List openedNamespaces = new ArrayList<>(); //public List openedNamespacesKinds = new ArrayList<>(); public List exceptions = new ArrayList<>(); -/* - public void addNamespace(int kind, String ns) { - addNamespace(kind, ns, openedNamespaces.size() - 1); - } + public String currentClass; + /* + public void addNamespace(int kind, String ns) { + addNamespace(kind, ns, openedNamespaces.size() - 1); + } - public void addNamespace(int kind, String ns, int index) { - openedNamespaces.add(index, ns); - openedNamespacesKinds.add(index, kind); - }*/ + public void addNamespace(int kind, String ns, int index) { + openedNamespaces.add(index, ns); + openedNamespacesKinds.add(index, kind); + }*/ public SourceGeneratorLocalData(HashMap registerVars, Integer inFunction, Boolean inMethod, Integer forInLevel) { this.registerVars = registerVars;