File tree Expand file tree Collapse file tree 1 file changed +19
-0
lines changed
src/main/java/org/scijava/script Expand file tree Collapse file tree 1 file changed +19
-0
lines changed Original file line number Diff line number Diff line change 6060import org .scijava .module .AbstractModuleInfo ;
6161import org .scijava .module .DefaultMutableModuleItem ;
6262import org .scijava .module .ModuleException ;
63+ import org .scijava .module .ModuleItem ;
6364import org .scijava .parse .ParseService ;
6465import org .scijava .plugin .Parameter ;
6566import org .scijava .util .DigestUtils ;
@@ -347,6 +348,24 @@ public void parseParameters() {
347348 }
348349 }
349350
351+ // NB: Widened visibility from AbstractModuleInfo.
352+ @ Override
353+ public void clearParameters () {
354+ super .clearParameters ();
355+ }
356+
357+ // NB: Widened visibility from AbstractModuleInfo.
358+ @ Override
359+ public void registerInput (final ModuleItem <?> input ) {
360+ super .registerInput (input );
361+ }
362+
363+ // NB: Widened visibility from AbstractModuleInfo.
364+ @ Override
365+ public void registerOutput (final ModuleItem <?> output ) {
366+ super .registerOutput (output );
367+ }
368+
350369 // -- ModuleInfo methods --
351370
352371 @ Override
You can’t perform that action at this time.
0 commit comments