fix(gui): improve JNode caching (#2400)

This commit is contained in:
Skylot
2025-02-01 17:36:53 +00:00
parent 3d36c93beb
commit 801890f0a8
9 changed files with 82 additions and 27 deletions
@@ -587,6 +587,8 @@ public final class JadxDecompiler implements Closeable {
return convertMethodNode((MethodNode) ann);
case FIELD:
return convertFieldNode((FieldNode) ann);
case PKG:
return convertPackageNode((PackageNode) ann);
case DECLARATION:
return getJavaNodeByCodeAnnotation(codeInfo, ((NodeDeclareRef) ann).getNode());
case VAR: