mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-27 22:04:46 +00:00
ABCExplorer - show selected trait in ABC explorer
This commit is contained in:
@@ -160,11 +160,14 @@ public final class AbcIndexing {
|
||||
|
||||
int builtInIndex = -1;
|
||||
if (abc != null) {
|
||||
if (!builtInNsPerAbc.containsKey(abc)) {
|
||||
int index = abc.constants.getNamespaceId(Namespace.KIND_NAMESPACE, BUILT_IN_NS, 0, true);
|
||||
builtInNsPerAbc.put(abc, index);
|
||||
Integer builtInNs = builtInNsPerAbc.get(abc);
|
||||
|
||||
if (builtInNs == null) {
|
||||
builtInIndex = abc.constants.getNamespaceId(Namespace.KIND_NAMESPACE, BUILT_IN_NS, 0, true);
|
||||
builtInNsPerAbc.put(abc, builtInIndex);
|
||||
} else {
|
||||
builtInIndex = builtInNs;
|
||||
}
|
||||
builtInIndex = builtInNsPerAbc.get(abc);
|
||||
}
|
||||
|
||||
this.propName = propName;
|
||||
|
||||
Reference in New Issue
Block a user