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

Commit 8e535cec authored by Dianne Hackborn's avatar Dianne Hackborn Committed by Android Git Automerger
Browse files

am dfafaffe: Merge "Fix issue #10387684: ArrayIndexOutOfBoundsException in...

am dfafaffe: Merge "Fix issue #10387684: ArrayIndexOutOfBoundsException in ArrayMap.put" into klp-dev

* commit 'dfafaffe':
  Fix issue #10387684: ArrayIndexOutOfBoundsException in ArrayMap.put
parents 4063e9e7 dfafaffe
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -710,7 +710,7 @@ class ContextImpl extends Context {
    @Override
    public SharedPreferences getSharedPreferences(String name, int mode) {
        SharedPreferencesImpl sp;
        synchronized (mSync) {
        synchronized (ContextImpl.class) {
            if (sSharedPrefs == null) {
                sSharedPrefs = new ArrayMap<String, ArrayMap<String, SharedPreferencesImpl>>();
            }