X-Git-Url: https://ruin.nu/git/?p=moosique.git;a=blobdiff_plain;f=MooKeyboard.java;h=35b2496ff0fa707a8b74bb0bdee285ab7d041cf2;hp=2a2bd9ead52f0797785de9e127154f2d6a965a11;hb=aae2d0b4428236b4147f466b3858a34bb7ed174f;hpb=068401ca0cb0e4f38b1368b357ef7705ac4d21fd diff --git a/MooKeyboard.java b/MooKeyboard.java index 2a2bd9e..35b2496 100644 --- a/MooKeyboard.java +++ b/MooKeyboard.java @@ -23,7 +23,6 @@ public class MooKeyboard extends KeyAdapter { // If note is not already on and the key is mapped to a note, sends the NoteOn event. if (!isOn[noteNumber] && noteNumber > 0) Moosique.getActiveChannel().noteOn(noteNumber, 127); isOn[noteNumber] = true; - System.out.println("NoteON"); } catch (ArrayIndexOutOfBoundsException x) { return; } @@ -39,7 +38,6 @@ public class MooKeyboard extends KeyAdapter { // Sends the NoteOff event. Moosique.getActiveChannel().noteOff(noteNumber); isOn[noteNumber] = false; - System.out.println("NoteOFF"); } catch (ArrayIndexOutOfBoundsException x) { return; }