diff options
author | 2014-11-07 12:48:59 -0800 | |
---|---|---|
committer | 2014-12-12 13:45:46 +0900 | |
commit | 31a10e226d23b30b24d9c902608ff013cc1c3e0c (patch) | |
tree | 7401259780265deedcc8b564ad748e2fb853ff62 /java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java | |
parent | 8cfad7ed64d08c5a131c9c539aa4fc964030c214 (diff) | |
download | latinime-31a10e226d23b30b24d9c902608ff013cc1c3e0c.tar.gz latinime-31a10e226d23b30b24d9c902608ff013cc1c3e0c.tar.xz latinime-31a10e226d23b30b24d9c902608ff013cc1c3e0c.zip |
Remove SubtypeSwitcher
Change-Id: Ic4def69a9f742f13c98bc3e518c406658b52797d
Diffstat (limited to 'java/src/com/android/inputmethod/latin/settings/AccountsSettingsFragment.java')
-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 4bd15d037..5a1cd8c20 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; @@ -63,12 +62,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 = |