mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 14:30:47 +00:00
Fixed #1888 Resolve properties on protected namespaces
This commit is contained in:
@@ -357,7 +357,7 @@ public class DecompiledEditorPane extends DebuggableEditorPane implements CaretL
|
||||
if (parentType.equals("*")) {
|
||||
return false;
|
||||
}
|
||||
AbcIndexing.TraitIndex propertyTraitIndex = indexing.findProperty(new AbcIndexing.PropertyDef(propName, new TypeItem(parentType), getABC(), data.namespaceIndex), data.isStatic, !data.isStatic);
|
||||
AbcIndexing.TraitIndex propertyTraitIndex = indexing.findProperty(new AbcIndexing.PropertyDef(propName, new TypeItem(parentType), getABC(), data.namespaceIndex), data.isStatic, !data.isStatic, true);
|
||||
if (propertyTraitIndex == null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user