mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 06:46:09 +00:00
Issue #557 private namespaces fix (nullpointer)
This commit is contained in:
@@ -85,6 +85,9 @@ public class AVM2Deobfuscation {
|
||||
}
|
||||
|
||||
public String builtInNs(String ns) {
|
||||
if(ns == null){
|
||||
return null;
|
||||
}
|
||||
if (ns.equals("http://www.adobe.com/2006/actionscript/flash/proxy")) {
|
||||
return "flash.utils.flash_proxy";
|
||||
}
|
||||
|
||||
@@ -893,7 +893,7 @@ public class Main {
|
||||
* @param args the command line arguments
|
||||
* @throws IOException
|
||||
*/
|
||||
public static void main(String[] args) throws IOException {
|
||||
public static void main(String[] args) throws IOException {
|
||||
startFreeMemThread();
|
||||
initLogging(Configuration.debugMode.get());
|
||||
initLang();
|
||||
|
||||
Reference in New Issue
Block a user