Skip to content

Commit

Permalink
Remove unnecessary modifiers
Browse files Browse the repository at this point in the history
  • Loading branch information
tpietzsch committed Sep 30, 2020
1 parent e097920 commit eb57163
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions src/main/java/org/mastodon/ui/keymap/KeyConfigContexts.java
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,18 @@
// TODO move to somewhere in mamut package
public interface KeyConfigContexts
{

/**
* The action or behaviour applies to the whole app.
*/
public static final String MASTODON = "mastodon";
String MASTODON = "mastodon";

/**
* The action or behaviour applies to the TrackScheme views.
*/
public static final String TRACKSCHEME = "ts";
String TRACKSCHEME = "ts";

/**
* The action or behaviour applies to the BDV views.
*/
public static final String BIGDATAVIEWER = "bdv";

String BIGDATAVIEWER = "bdv";
}

0 comments on commit eb57163

Please sign in to comment.