diff options
author | 2014-12-17 06:39:05 +0000 | |
---|---|---|
committer | 2014-12-17 06:39:07 +0000 | |
commit | 4077a7e52f4016484de914cbfb26e58fe06f3b65 (patch) | |
tree | 89e67280b799d54f2129fb87b17058242884d578 /java/src/com/android/inputmethod/latin/settings | |
parent | 8bc644de64c4e94c6e60d6011bb10e74d1c1459c (diff) | |
parent | 31a10e226d23b30b24d9c902608ff013cc1c3e0c (diff) | |
download | latinime-4077a7e52f4016484de914cbfb26e58fe06f3b65.tar.gz latinime-4077a7e52f4016484de914cbfb26e58fe06f3b65.tar.xz latinime-4077a7e52f4016484de914cbfb26e58fe06f3b65.zip |
Merge "Remove SubtypeSwitcher"
Diffstat (limited to 'java/src/com/android/inputmethod/latin/settings')
-rw-r--r-- | java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java b/java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java index 0232853f7..8f4ec4f1b 100644 --- a/java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java +++ b/java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java @@ -33,9 +33,8 @@ import android.widget.Toast; import com.android.inputmethod.annotations.UsedForTesting; import com.android.inputmethod.latin.R; -import com.android.inputmethod.latin.SubtypeSwitcher; -import com.android.inputmethod.latin.accounts.LoginAccountUtils; import com.android.inputmethod.latin.accounts.AccountStateChangedListener; +import com.android.inputmethod.latin.accounts.LoginAccountUtils; import com.android.inputmethod.latin.define.ProductionFlags; import javax.annotation.Nullable; @@ -66,12 +65,6 @@ public final class AccountsSettingsFragment extends SubScreenFragment { addPreferencesFromResource(R.xml.prefs_screen_accounts); final Resources res = getResources(); - final Context context = getActivity(); - - // When we are called from the Settings application but we are not already running, some - // singleton and utility classes may not have been initialized. We have to call - // initialization method of these classes here. See {@link LatinIME#onCreate()}. - SubtypeSwitcher.init(context); if (ProductionFlags.IS_METRICS_LOGGING_SUPPORTED) { final Preference enableMetricsLogging = |