Merge remote-tracking branch 'origin/Ghidra_12.1'

This commit is contained in:
Ryan Kurtz
2026-05-07 06:21:01 -04:00
@@ -393,6 +393,9 @@ public class JavadocConverter extends DocConverter {
if (el instanceof ExecutableElement method) { if (el instanceof ExecutableElement method) {
type = (TypeElement) method.getEnclosingElement(); type = (TypeElement) method.getEnclosingElement();
} }
else if (el instanceof VariableElement variable) {
type = (TypeElement) variable.getEnclosingElement();
}
else { else {
type = (TypeElement) el; type = (TypeElement) el;
} }