mirror of
https://gitlab.futo.org/keyboard/latinime.git
synced 2024-09-28 14:54:30 +01:00
Fix Keyboard.getKey as thread safe
This is a follow up of Id962e670. Change-Id: I9e8542bff9e8faf57f934051fe612463c99ad61f
This commit is contained in:
parent
e9a86e2cdb
commit
8f6c603b3b
@ -185,6 +185,7 @@ public class Keyboard {
|
||||
if (code == CODE_UNSPECIFIED) {
|
||||
return null;
|
||||
}
|
||||
synchronized (mKeyCache) {
|
||||
final int index = mKeyCache.indexOfKey(code);
|
||||
if (index >= 0) {
|
||||
return mKeyCache.valueAt(index);
|
||||
@ -199,6 +200,7 @@ public class Keyboard {
|
||||
mKeyCache.put(code, null);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
public boolean hasKey(Key aKey) {
|
||||
if (mKeyCache.indexOfValue(aKey) >= 0) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user