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

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

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

* commit 'e4da18e2':
  Initializing member variable before it is referenced
parents 1e96cc1f e4da18e2
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