Skip to content
Snippets Groups Projects
Commit 197a2d32 authored by Jean Chalard's avatar Jean Chalard Committed by Android (Google) Code Review
Browse files

Merge "[PB1] Cleanup"

parents b71e435e 41f505dc
No related branches found
No related tags found
No related merge requests found
......@@ -16,10 +16,9 @@
package com.android.inputmethod.dictionarypack;
import android.app.Dialog;
import android.content.Context;
import android.content.SharedPreferences;
import android.preference.DialogPreference;
import android.preference.Preference;
import android.util.Log;
import android.view.View;
import android.view.ViewGroup;
......@@ -38,7 +37,7 @@ import java.util.Locale;
* pack. Upon being pressed, it displays a menu to allow the user to install, disable,
* enable or delete it as appropriate for the current state of the word list.
*/
public final class WordListPreference extends DialogPreference {
public final class WordListPreference extends Preference {
static final private String TAG = WordListPreference.class.getSimpleName();
// What to display in the "status" field when we receive unknown data as a status from
......@@ -93,12 +92,6 @@ public final class WordListPreference extends DialogPreference {
if (status == mStatus) return;
mStatus = status;
setSummary(getSummary(status));
// If we are currently displaying the dialog, we should update it, or at least
// dismiss it.
final Dialog dialog = getDialog();
if (null != dialog) {
dialog.dismiss();
}
}
private String getSummary(final int status) {
......
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