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

Commit b164d7ec authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 4615953 from 276b2d42 to pi-release

Change-Id: I1bf37fe89b14a883b640763e1885e65c61c9d215
parents 641d8631 276b2d42
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -210,7 +210,7 @@ public class ProvidersCache implements ProvidersAccess {
        final ContentResolver resolver = mContext.getContentResolver();
        synchronized (mLock) {
            for (String authority : mStoppedAuthorities) {
                mRoots.putAll(authority, loadRootsForAuthority(resolver, authority, true));
                mRoots.replaceValues(authority, loadRootsForAuthority(resolver, authority, true));
            }
            mStoppedAuthorities.clear();
        }
@@ -227,7 +227,7 @@ public class ProvidersCache implements ProvidersAccess {
                return;
            }
            if (DEBUG) Log.d(TAG, "Loading stopped authority " + authority);
            mRoots.putAll(authority, loadRootsForAuthority(resolver, authority, true));
            mRoots.replaceValues(authority, loadRootsForAuthority(resolver, authority, true));
            mStoppedAuthorities.remove(authority);
        }
    }
@@ -334,7 +334,7 @@ public class ProvidersCache implements ProvidersAccess {
        synchronized (mLock) {
            RootInfo root = forceRefresh ? null : getRootLocked(authority, rootId);
            if (root == null) {
                mRoots.putAll(authority, loadRootsForAuthority(
                mRoots.replaceValues(authority, loadRootsForAuthority(
                                mContext.getContentResolver(), authority, forceRefresh));
                root = getRootLocked(authority, rootId);
            }