Skip to content
This repository was archived by the owner on Nov 23, 2023. It is now read-only.

Commit 1ee127b

Browse files
committed
Call super of configure(), so required Python package is checked.
1 parent acb4501 commit 1ee127b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/resources/archetype-resources/plugin/src/java/__node__Model.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ protected DataTableSpec[] configure(final DataTableSpec[] inSpecs)
6060
// the spec of its output data table(s) (if you can, otherwise an array
6161
// with null elements), or throw an exception with a useful user message
6262

63-
return new DataTableSpec[]{null};
63+
return super.configure(inSpecs);
6464
}
6565
}

0 commit comments

Comments
 (0)