remove debug output
authorDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 5 Apr 2008 02:33:03 +0000 (02:33 +0000)
committerDavid ‘Bombe’ Roden <bombe@pterodactylus.net>
Sat, 5 Apr 2008 02:33:03 +0000 (02:33 +0000)
git-svn-id: http://trooper/svn/projects/jSite/trunk@599 c3eda9e8-030b-0410-8277-bc7414b0a119

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