File tree Expand file tree Collapse file tree 1 file changed +3
-8
lines changed
src/main/java/org/scijava/plugins/scripting/python Expand file tree Collapse file tree 1 file changed +3
-8
lines changed Original file line number Diff line number Diff line change 3333
3434import org .scijava .Priority ;
3535import org .scijava .plugin .Plugin ;
36- import org .scijava .script .AdaptedScriptLanguage ;
36+ import org .scijava .script .AbstractScriptLanguage ;
3737import org .scijava .script .ScriptLanguage ;
3838
3939/**
4444 * @see ScriptEngine
4545 */
4646@ Plugin (type = ScriptLanguage .class , name = "Python 3" , priority = Priority .HIGH )
47- public class PythonScriptLanguage extends AdaptedScriptLanguage {
48-
49- public PythonScriptLanguage (String factoryName ) {
50- super (factoryName );
51- // TODO Auto-generated constructor stub
52- }
53-
47+ public class PythonScriptLanguage extends AbstractScriptLanguage {
48+
5449 @ Override
5550 public ScriptEngine getScriptEngine () {
5651 return new PythonScriptEngine (getContext ());
You can’t perform that action at this time.
0 commit comments