mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-02 20:04:37 +00:00
Fixed: #2276 Protected namespaces do not use fully qualified names
This commit is contained in:
@@ -684,12 +684,10 @@ public class Multiname {
|
||||
if (identifier != null && !identifier.isEmpty()) {
|
||||
return nsname + "::" + name;
|
||||
}
|
||||
} else {
|
||||
//???
|
||||
}
|
||||
}
|
||||
|
||||
if (fullyQualifiedNames != null && !fullyQualifiedNames.isEmpty() && fullyQualifiedNames.contains(DottedChain.parseWithSuffix(name))) {
|
||||
if (nskind == Namespace.KIND_PACKAGE && fullyQualifiedNames != null && !fullyQualifiedNames.isEmpty() && fullyQualifiedNames.contains(DottedChain.parseWithSuffix(name))) {
|
||||
DottedChain dc = getNameWithNamespace(abc.constants, withSuffix);
|
||||
return dontDeobfuscate ? dc.toRawString() : dc.toPrintableString(true);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user