Skip to content

Commit 4f7f62a

Browse files
committed
Remove menu paths from non-functional commands
1 parent f4bb1c1 commit 4f7f62a

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/main/java/net/imagej/ops/commands/convert/ConvertImgPlus.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
/**
4343
* @author Martin Horn (University of Konstanz)
4444
*/
45-
@Plugin(type = Command.class, menuPath = "Image > Convert")
45+
@Plugin(type = Command.class)
4646
public class ConvertImgPlus<I extends RealType<I>, O extends RealType<O>>
4747
implements Command
4848
{

src/main/java/net/imagej/ops/commands/convolve/Convolve.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
*
5252
* @author Martin Horn (University of Konstanz)
5353
*/
54-
@Plugin(type = Command.class, menuPath = "Image > Convolve")
54+
@Plugin(type = Command.class)
5555
public class Convolve<I extends RealType<I>, K extends RealType<K>, O extends RealType<O>>
5656
implements Command {
5757

src/main/java/net/imagej/ops/commands/project/ProjectCommand.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
import org.scijava.plugin.Parameter;
4141
import org.scijava.plugin.Plugin;
4242

43-
@Plugin(type = Command.class, menuPath = "Image > Threshold > Project")
43+
@Plugin(type = Command.class)
4444
public class ProjectCommand<T extends RealType<T>> implements Command {
4545

4646
@Parameter(type = ItemIO.BOTH)

src/main/java/net/imagej/ops/commands/threshold/GlobalThresholder.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
*
5050
* @author Martin Horn (University of Konstanz)
5151
*/
52-
@Plugin(type = Command.class, menuPath = "Image > Threshold > Apply Threshold")
52+
@Plugin(type = Command.class)
5353
public class GlobalThresholder<T extends RealType<T>> extends AbstractOp {
5454

5555
@Parameter

0 commit comments

Comments
 (0)