Merge "Remove synchronization from getCurrentInputMethodSubtype()" am: 85539bed77
am: d3e1e473df
Change-Id: Iad174757bbb77ce2eef4bd39fd218b64f6e35931
This commit is contained in:
@@ -2053,12 +2053,10 @@ public final class InputMethodManager {
|
||||
* have any input method subtype.
|
||||
*/
|
||||
public InputMethodSubtype getCurrentInputMethodSubtype() {
|
||||
synchronized (mH) {
|
||||
try {
|
||||
return mService.getCurrentInputMethodSubtype();
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
try {
|
||||
return mService.getCurrentInputMethodSubtype();
|
||||
} catch (RemoteException e) {
|
||||
throw e.rethrowFromSystemServer();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user