Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e4da18e2 authored by Tadashi G. Takaoka's avatar Tadashi G. Takaoka Committed by Android Git Automerger
Browse files

am 6348c54f: Merge "Initializing member variable before it is referenced" into jb-dev

* commit '6348c54f':
  Initializing member variable before it is referenced
parents 674c51a0 6348c54f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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