diff options
author | 2014-11-21 03:59:48 +0000 | |
---|---|---|
committer | 2014-11-21 03:59:48 +0000 | |
commit | e757c9605f2a0c653db7cc9bd12f7c8a0ea51632 (patch) | |
tree | ca2616421a6d195b0e80296a598817464e9a735e /java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java | |
parent | 9e13e83b25dc13fb6eb77de7258caa32764c0e64 (diff) | |
parent | 8a711f2a547a61b9f4f3ef3bdb79a66b618db58f (diff) | |
download | latinime-e757c9605f2a0c653db7cc9bd12f7c8a0ea51632.tar.gz latinime-e757c9605f2a0c653db7cc9bd12f7c8a0ea51632.tar.xz latinime-e757c9605f2a0c653db7cc9bd12f7c8a0ea51632.zip |
am 8a711f2a: Remove unneeded Context argument
* commit '8a711f2a547a61b9f4f3ef3bdb79a66b618db58f':
Remove unneeded Context argument
Diffstat (limited to 'java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java')
-rw-r--r-- | java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java b/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java index 123ab208c..982d4c690 100644 --- a/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java +++ b/java/src/com/android/inputmethod/latin/SystemBroadcastReceiver.java @@ -69,7 +69,7 @@ public final class SystemBroadcastReceiver extends BroadcastReceiver { // subtypes when the package is replaced. RichInputMethodManager.init(context); final RichInputMethodManager richImm = RichInputMethodManager.getInstance(); - final InputMethodSubtype[] additionalSubtypes = richImm.getAdditionalSubtypes(context); + final InputMethodSubtype[] additionalSubtypes = richImm.getAdditionalSubtypes(); richImm.setAdditionalInputMethodSubtypes(additionalSubtypes); LauncherIconVisibilityManager.updateSetupWizardIconVisibility(context); } else if (Intent.ACTION_BOOT_COMPLETED.equals(intentAction)) { |