mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-06 23:27:27 +00:00
Namespace suffix handling on all Levels.
Classes with same name handling. Test data
This commit is contained in:
@@ -3749,7 +3749,7 @@ public class CommandLineArgumentParser {
|
||||
String dcs = swf.getDocumentClass();
|
||||
if (dcs != null) {
|
||||
if (dcs.contains(".")) {
|
||||
DottedChain dc = new DottedChain(dcs.split("\\."));
|
||||
DottedChain dc = DottedChain.parseWithSuffix(dcs);
|
||||
pw.println("documentClass=" + dc.toPrintableString(true));
|
||||
} else {
|
||||
pw.println("documentClass=" + IdentifiersDeobfuscation.printIdentifier(true, dcs));
|
||||
|
||||
Reference in New Issue
Block a user