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

Commit 4e974ce2 authored by Varun Shah's avatar Varun Shah Committed by Android (Google) Code Review
Browse files

Merge "Don't hold the CPH lock while installing providers." into sc-dev

parents e2f123e1 a113e997
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -1206,10 +1206,10 @@ public class ContentProviderHelper {
            }
            }
        }
        }


        synchronized (this) {
        if (providers != null) {
        if (providers != null) {
            mService.mSystemThread.installSystemProviders(providers);
            mService.mSystemThread.installSystemProviders(providers);
        }
        }
        synchronized (this) {
            mSystemProvidersInstalled = true;
            mSystemProvidersInstalled = true;
        }
        }