mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 21:45:49 +00:00
Do not parse imports from names with namespace suffix
This commit is contained in:
@@ -26,6 +26,8 @@ public class ActionScriptTestBase {
|
||||
pCode = pCode.replaceAll("\t", " ").trim();
|
||||
pCode = pCode.replaceAll("( *[\r\n]+ *)+", "\n").trim();
|
||||
pCode = pCode.replaceAll(" +", " ").trim();
|
||||
//replace ns suffixes, so testCollidingPublicTraits will work even when ns indices change
|
||||
pCode = pCode.replaceAll("#[0-9]+", "#_");
|
||||
return pCode;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user