Tidied up unused variables, added serialVersionUIDs as appropriate,

removed a few unnecessary casts and brackets and exceptions.
This commit is contained in:
Caspian Rychlik-Prince 2006-04-21 11:11:21 +00:00
parent 5db7a9a7b8
commit 16524516cd
22 changed files with 42 additions and 26 deletions

View file

@ -264,7 +264,7 @@ final class KeyboardEventQueue extends EventQueue implements KeyListener {
if ( key_states[key_code_mapped] == state )
return;
key_states[key_code_mapped] = state;
int key_int_char = ((int)character) & 0xffff;
int key_int_char = character & 0xffff;
putKeyboardEvent(key_code_mapped, state, key_int_char);
}