Update CharKeycodeMap.java

This commit is contained in:
Tungstend 2023-07-30 01:12:15 +08:00
parent cec81528bf
commit ed63809bb9
1 changed files with 0 additions and 4 deletions

View File

@ -17,10 +17,6 @@ public class CharKeycodeMap {
return KEYCODE_MAP.containsKey(fclKeycode);
}
public static char getInputChar(int fclKeycode) {
return getInputChar(fclKeycode, false, false);
}
public static char getInputChar(int fclKeycode, boolean shift, boolean caps) {
if (KEYCODE_MAP.containsKey(fclKeycode)) {
InputChar inputChar = KEYCODE_MAP.get(fclKeycode);