Test fixes

This commit is contained in:
dragonmacher 2024-12-06 14:57:42 -05:00
parent 57df41297f
commit 5307e45f63

View file

@ -464,7 +464,7 @@ public class SymbolInspector implements OptionsChangeListener {
}
private ScreenElement getFunctionScreenElement(Function function) {
if (!function.isThunk()) {
if (function == null || !function.isThunk()) {
return OptionsGui.FUN_NAME;
}