Merge remote-tracking branch 'origin/GP-1766_d-millar_NPE_fix' into patch

This commit is contained in:
Ryan Kurtz 2022-03-03 00:52:13 -05:00
commit bcfef70bfa

View file

@ -255,7 +255,7 @@ public class DebuggerConsoleProvider extends ComponentProviderAdapter
if (renderer instanceof ConsoleActionsCellRenderer) {
ActionList actions =
(ActionList) getModel().getValueAt(r, convertColumnIndexToModel(c));
if (!actions.isEmpty()) {
if (actions != null && !actions.isEmpty()) {
return ACTION_BUTTON_SIZE;
}
return 0;