Skip to content
Snippets Groups Projects
Commit 8f6c603b authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka
Browse files

Fix Keyboard.getKey as thread safe

This is a follow up of Id962e670.

Change-Id: I9e8542bff9e8faf57f934051fe612463c99ad61f
parent e9a86e2c
No related branches found
No related tags found
No related merge requests found
...@@ -185,19 +185,21 @@ public class Keyboard { ...@@ -185,19 +185,21 @@ public class Keyboard {
if (code == CODE_UNSPECIFIED) { if (code == CODE_UNSPECIFIED) {
return null; return null;
} }
final int index = mKeyCache.indexOfKey(code); synchronized (mKeyCache) {
if (index >= 0) { final int index = mKeyCache.indexOfKey(code);
return mKeyCache.valueAt(index); if (index >= 0) {
} return mKeyCache.valueAt(index);
}
for (final Key key : mKeys) { for (final Key key : mKeys) {
if (key.mCode == code) { if (key.mCode == code) {
mKeyCache.put(code, key); mKeyCache.put(code, key);
return key; return key;
}
} }
mKeyCache.put(code, null);
return null;
} }
mKeyCache.put(code, null);
return null;
} }
public boolean hasKey(Key aKey) { public boolean hasKey(Key aKey) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment