Skip to content

Commit d7756c8

Browse files
committed
Remove gratuitous pyimagej and scyjava references
Let's just call the script engine "Python".
1 parent bd85b9f commit d7756c8

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/main/java/org/scijava/plugins/scripting/python/PythonScriptLanguage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@
4040
import org.scijava.script.ScriptLanguage;
4141

4242
/**
43-
* An adapter for Python (pyimagej) to the SciJava scripting interface.
43+
* An adapter for Python to the SciJava scripting interface.
4444
*
4545
* @author Curtis Rueden
4646
* @author Karl Duderstadt
4747
* @see ScriptEngine
4848
*/
49-
@Plugin(type = ScriptLanguage.class, name = "Python (pyimagej)",
49+
@Plugin(type = ScriptLanguage.class, name = "Python",
5050
priority = Priority.VERY_LOW)
5151
public class PythonScriptLanguage extends AbstractScriptLanguage {
5252

src/main/java/org/scijava/plugins/scripting/python/PythonScriptSyntaxHighlighter.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@
3434
import org.scijava.ui.swing.script.SyntaxHighlighter;
3535

3636
/**
37-
* SyntaxHighlighter for Python (scyjava).
37+
* SyntaxHighlighter for Python.
3838
*
3939
* @author Karl Duderstadt
4040
*/
41-
@Plugin(type = SyntaxHighlighter.class, name = "python-(pyimagej)")
41+
@Plugin(type = SyntaxHighlighter.class, name = "python")
4242
public class PythonScriptSyntaxHighlighter extends PythonTokenMaker implements
4343
SyntaxHighlighter
4444
{

src/main/java/org/scijava/plugins/scripting/python/RebuildEnvironment.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public class RebuildEnvironment implements Command {
7676
@Override
7777
public void run() {
7878
final File backupDir = new File(targetDir.getPath() + ".old");
79-
// Prevent rebuilding the environment currently in use by pyimagej
79+
// Prevent rebuilding the environment currently in use.
8080
if (targetDir.exists()) {
8181
String cfgPythonDir = System.getProperty("scijava.python.dir", "");
8282
if (cfgPythonDir != null && !cfgPythonDir.isEmpty()) {

0 commit comments

Comments
 (0)