Browse Source

Removed remaining system.out in AwtKeyInput thaks to @JesperSmith

git-svn-id: https://jmonkeyengine.googlecode.com/svn/trunk@10035 75d07b2b-3a1a-0410-a2c5-0572b91ccdca
rem..om 12 years ago
parent
commit
7e79145d70
1 changed files with 2 additions and 4 deletions
  1. 2 4
      engine/src/desktop/com/jme3/input/awt/AwtKeyInput.java

+ 2 - 4
engine/src/desktop/com/jme3/input/awt/AwtKeyInput.java

@@ -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);
+            }                        
         }
     }