Removes useless debug logs from NewtKeyInput

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10481 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
This commit is contained in:
jul..om 2013-03-10 09:25:03 +00:00
parent 76b4306d10
commit 586ea98f00

View File

@ -110,7 +110,6 @@ public class NewtKeyInput implements KeyInput, KeyListener {
synchronized (eventQueue){ synchronized (eventQueue){
eventQueue.add(keyEvent); eventQueue.add(keyEvent);
} }
System.out.println(evt);
} }
} }
@ -125,7 +124,6 @@ public class NewtKeyInput implements KeyInput, KeyListener {
synchronized (eventQueue){ synchronized (eventQueue){
eventQueue.add(keyEvent); eventQueue.add(keyEvent);
} }
System.out.println(evt);
} }
} }