remove debug output
[jSite2.git] / src / net / pterodactylus / jsite / i18n / I18n.java
index 4a244c5..b6ff1f7 100644 (file)
@@ -136,7 +136,6 @@ public class I18n {
                                if (keyToken.startsWith("VK_")) {
                                        try {
                                                Field field = KeyEvent.class.getField(keyToken);
-                                               System.out.println("asked for: “" + key + "”, will return " + field.getInt(null));
                                                return KeyStroke.getKeyStroke(field.getInt(null), modifierMask);
                                        } catch (SecurityException e) {
                                                /* ignore. */
@@ -148,7 +147,6 @@ public class I18n {
                                                /* ignore. */
                                        }
                                }
-                               System.out.println("asked for: “" + key + "”, will return " + keyToken.charAt(0));
                                return KeyStroke.getKeyStroke(keyToken.charAt(0), modifierMask);
                        }
                }