mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 03:50:44 +00:00
AS3: better imports
AS3: Types with same name shown with namespace
This commit is contained in:
@@ -19,6 +19,7 @@ package com.jpexs.asdec.abc.avm2.treemodel;
|
||||
import com.jpexs.asdec.abc.avm2.ConstantPool;
|
||||
import com.jpexs.asdec.abc.avm2.instructions.AVM2Instruction;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
|
||||
public class LocalRegTreeItem extends TreeItem {
|
||||
|
||||
@@ -35,7 +36,7 @@ public class LocalRegTreeItem extends TreeItem {
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString(ConstantPool constants, HashMap<Integer, String> localRegNames) {
|
||||
public String toString(ConstantPool constants, HashMap<Integer, String> localRegNames, List<String> fullyQualifiedNames) {
|
||||
return hilight(localRegName(localRegNames, regIndex));
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user