Removed remaining system.out in AwtKeyInput thaks to @JesperSmith

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10035 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
rem..om 2012-12-18 16:36:05 +00:00
parent 53807571a6
commit 7e79145d70

View File

@ -119,8 +119,7 @@ public class AwtKeyInput implements KeyInput, KeyListener {
keyEvent.setTime(evt.getWhen());
synchronized (eventQueue){
eventQueue.add(keyEvent);
}
System.out.println(evt);
}
}
}
@ -134,8 +133,7 @@ public class AwtKeyInput implements KeyInput, KeyListener {
keyEvent.setTime(evt.getWhen());
synchronized (eventQueue){
eventQueue.add(keyEvent);
}
System.out.println(evt);
}
}
}