am 6348c54f
: Merge "Initializing member variable before it is referenced" into jb-dev
* commit '6348c54ffd1d39be44ce42d7d2eb068cba508dbc': Initializing member variable before it is referenced
This commit is contained in:
commit
e4da18e279
1 changed files with 1 additions and 1 deletions
|
@ -134,13 +134,13 @@ public class UserHistoryDictionary extends ExpandableDictionary {
|
||||||
SharedPreferences sp) {
|
SharedPreferences sp) {
|
||||||
super(context, dicTypeId);
|
super(context, dicTypeId);
|
||||||
mLocale = locale;
|
mLocale = locale;
|
||||||
|
mPrefs = sp;
|
||||||
if (sOpenHelper == null) {
|
if (sOpenHelper == null) {
|
||||||
sOpenHelper = new DatabaseHelper(getContext());
|
sOpenHelper = new DatabaseHelper(getContext());
|
||||||
}
|
}
|
||||||
if (mLocale != null && mLocale.length() > 1) {
|
if (mLocale != null && mLocale.length() > 1) {
|
||||||
loadDictionary();
|
loadDictionary();
|
||||||
}
|
}
|
||||||
mPrefs = sp;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in a new issue