Initializing member variable before it is referenced

Bug: 6584882
Change-Id: I1f76388fa8cc16171bc3fc60c935ddcf0a7c4e92
This commit is contained in:
Tadashi G. Takaoka 2012-06-07 11:03:55 -07:00
parent 65b7243523
commit 40582ab438

View file

@ -134,13 +134,13 @@ public class UserHistoryDictionary extends ExpandableDictionary {
SharedPreferences sp) {
super(context, dicTypeId);
mLocale = locale;
mPrefs = sp;
if (sOpenHelper == null) {
sOpenHelper = new DatabaseHelper(getContext());
}
if (mLocale != null && mLocale.length() > 1) {
loadDictionary();
}
mPrefs = sp;
}
@Override