Skip to content

Commit

Permalink
fix: Null Pointer Exception occurs when opening a project
Browse files Browse the repository at this point in the history
Fixes #696

Signed-off-by: azerr <[email protected]>
  • Loading branch information
angelozerr committed Dec 13, 2024
1 parent 7bc5f63 commit aa9f949
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -356,6 +356,8 @@ public ComboBox<ErrorReportingKind> getErrorReportingKindCombo() {

@Override
public void dispose() {
getConfiguration().resetJsonSchema();
if (configurationWidget != null) {
configurationWidget.resetJsonSchema();
}
}
}

0 comments on commit aa9f949

Please sign in to comment.