Skip to content

Commit

Permalink
fix NPE in readProjectWizardActions #781
Browse files Browse the repository at this point in the history
  • Loading branch information
EcljpseB0T authored and jukzi committed May 26, 2023
1 parent 8d6750e commit b4ca239
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,9 @@ private void readProjectWizardActions() {
return;
}
IWorkbenchPage page = win.getActivePage();
if (page == null) {
return;
}
String[] wizardIds = page.getNewWizardShortcuts();
projectWizardActions.clear();
for (String wizardId : wizardIds) {
Expand Down

0 comments on commit b4ca239

Please sign in to comment.