Skip to content
This repository has been archived by the owner on Jun 26, 2018. It is now read-only.

Commit

Permalink
fixed NPE in importer
Browse files Browse the repository at this point in the history
  • Loading branch information
cpartl committed Sep 25, 2014
1 parent f84f5a1 commit fe2c4e8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,8 @@ public void fillDataSetDescription() {
public void pageActivated() {
// The user must always visit the next page before he can finish
// updateWidgets();
if (dataSetDescription.getDataDescription().getCategoricalClassDescription() != null) {
if (dataSetDescription.getDataDescription() != null
&& dataSetDescription.getDataDescription().getCategoricalClassDescription() != null) {
numericalDatasetButton.setSelection(false);
categoricalDatasetButton.setSelection(true);
} else {
Expand Down

0 comments on commit fe2c4e8

Please sign in to comment.