Skip to content

Commit 780411e

Browse files
committed
SciJavaApp: make low priority
This makes it easier for other apps to take precedence. See: AppService#getApp()
1 parent e2ccf08 commit 780411e

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/org/scijava/app/SciJavaApp.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131

3232
package org.scijava.app;
3333

34+
import org.scijava.Priority;
3435
import org.scijava.plugin.Plugin;
3536

3637
/**
@@ -39,7 +40,8 @@
3940
* @author Curtis Rueden
4041
* @see AppService
4142
*/
42-
@Plugin(type = App.class, name = SciJavaApp.NAME)
43+
@Plugin(type = App.class, name = SciJavaApp.NAME,
44+
priority = Priority.LOW_PRIORITY)
4345
public class SciJavaApp extends AbstractApp {
4446

4547
public static final String NAME = "SciJava";

0 commit comments

Comments
 (0)