mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-07 17:16:06 +00:00
Adding class with obfuscated identifier fix.
Obfuscated class/packages ordering fix.
This commit is contained in:
@@ -256,12 +256,13 @@ public class Helper {
|
||||
|
||||
/**
|
||||
* Unescape export name
|
||||
* @param swf SWF
|
||||
* @param s Input string
|
||||
* @return Unescaped string
|
||||
*/
|
||||
public static String unescapeExportname(String s) {
|
||||
public static String unescapeExportname(SWF swf, String s) {
|
||||
if (s.startsWith("__Packages.")) {
|
||||
return DottedChain.parsePrintable(s).toRawString();
|
||||
return DottedChain.parsePrintable(swf, s).toRawString();
|
||||
}
|
||||
return unescapePCodeString(s);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user