From f0820414c99c46d8302dd2c928145f499d867dcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jindra=20Pet=C5=99=C3=ADk?= Date: Fri, 23 Oct 2015 07:01:41 +0200 Subject: [PATCH] commandline swf info deobfuscate document class --- .../decompiler/flash/console/CommandLineArgumentParser.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java index 21e692e67..d2b19ea0f 100644 --- a/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java +++ b/src/com/jpexs/decompiler/flash/console/CommandLineArgumentParser.java @@ -19,6 +19,7 @@ package com.jpexs.decompiler.flash.console; import com.jpexs.decompiler.flash.AbortRetryIgnoreHandler; import com.jpexs.decompiler.flash.ApplicationInfo; import com.jpexs.decompiler.flash.EventListener; +import com.jpexs.decompiler.flash.IdentifiersDeobfuscation; import com.jpexs.decompiler.flash.SWF; import com.jpexs.decompiler.flash.SWFBundle; import com.jpexs.decompiler.flash.SWFCompression; @@ -2715,7 +2716,7 @@ public class CommandLineArgumentParser { pw.println("[as3]"); pw.println("ABCtagCount=" + swf.getAbcList().size()); pw.println("packsCount=" + swf.getAS3Packs().size()); - String dc = swf.getDocumentClass(); + String dc = IdentifiersDeobfuscation.printIdentifier(true, swf.getDocumentClass()); pw.println("documentClass=" + (dc == null ? "" : dc)); pw.println(); pw.flush();