removed unused imports

This commit is contained in:
honfika@gmail.com
2015-12-01 09:28:01 +01:00
parent 15c09a2d21
commit d0f2786673
11 changed files with 46 additions and 41 deletions

View File

@@ -32,6 +32,7 @@ public interface MenuBuilder {
public static class HotKey {
private static Map<Integer, String> keyCodesToNames = new HashMap<>();
private static Map<String, Integer> keyNamesToCodes = new HashMap<>();
{
@@ -57,8 +58,11 @@ public interface MenuBuilder {
}
public int key;
public boolean shiftDown;
public boolean ctrlDown;
public boolean altDown;
@Override
@@ -163,7 +167,6 @@ public interface MenuBuilder {
return s;
}
}
public static final int PRIORITY_LOW = 1;