mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-21 06:25:32 +00:00
Fixed #1692 Properly distinguish obfuscated names vs namespace suffixes and attributes
This commit is contained in:
@@ -93,7 +93,7 @@ public abstract class ActionScript3DecompileTestBase extends ActionScriptTestBas
|
||||
abc = scriptPack.abc;
|
||||
scriptIndex = scriptPack.scriptIndex;
|
||||
|
||||
clsIndex = abc.findClassByName(new DottedChain(new String[]{"tests", className}, ""));
|
||||
clsIndex = abc.findClassByName(new DottedChain(new String[]{"tests", className}));
|
||||
|
||||
assertTrue(clsIndex > -1);
|
||||
assertTrue(scriptIndex > -1);
|
||||
|
||||
@@ -52,7 +52,7 @@ public class ActionScript3OptinalParametersTest extends ActionScript3DecompileTe
|
||||
if (t instanceof DoABC2Tag) {
|
||||
tag = (DoABC2Tag) t;
|
||||
abc = tag.getABC();
|
||||
clsIndex = abc.findClassByName(new DottedChain(new String[]{"tests", className}, ""));
|
||||
clsIndex = abc.findClassByName(new DottedChain(new String[]{"tests", className}));
|
||||
if (clsIndex > -1) {
|
||||
break;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user