Fixed Parsing obfuscated namespaces with hash character "#"

This commit is contained in:
Jindra Petřík
2022-12-18 23:10:24 +01:00
parent 307cb6aadf
commit 74cf717e9a
3 changed files with 21 additions and 1 deletions
@@ -663,7 +663,7 @@ public class AVM2ConstantPool implements Cloneable {
String str = getString(index);
DottedChain chain = dottedChainCache.get(str);
if (chain == null) {
chain = DottedChain.parseWithSuffix(str);
chain = DottedChain.parseNoSuffix(str);
dottedChainCache.put(str, chain);
}