This commit is contained in:
2011-02-25 23:23:49 +00:00
parent 9ba827f1ef
commit 30ebdeb7e3
2 changed files with 1 additions and 4 deletions

View File

@@ -59,9 +59,8 @@ public class JIntellitypeDevice extends Device implements HotkeyListener, Intell
}
public void onIntellitype(int command) {
CommandButton commandButton;
try {
commandButton = CommandButton.create(command);
CommandButton commandButton = CommandButton.create(command);
add(new Press(commandButton));
add(new Release(commandButton));
} catch (UnknownButtonException e) {

View File

@@ -1,7 +1,5 @@
package pm.macro;
public class Sequence {
protected State[] eventArray;