Fixed exception when finding references

This commit is contained in:
dragonmacher
2025-12-30 14:16:42 -05:00
parent 105651b2b9
commit 0028eb07a4
@@ -16,6 +16,7 @@
package ghidra.program.model.data; package ghidra.program.model.data;
import java.util.Collection; import java.util.Collection;
import java.util.Collections;
import ghidra.docking.settings.Settings; import ghidra.docking.settings.Settings;
import ghidra.program.model.mem.MemBuffer; import ghidra.program.model.mem.MemBuffer;
@@ -182,7 +183,7 @@ public abstract class AbstractDataType implements DataType {
@Override @Override
public Collection<DataType> getParents() { public Collection<DataType> getParents() {
// not-applicable // not-applicable
return null; return Collections.emptyList();
} }
@Override @Override