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

Commit ed5a28f2 authored by yangbingqian's avatar yangbingqian Committed by android-build-merger
Browse files

Merge "use FgThread.class instead of UiThread.class for lock object" am:...

Merge "use FgThread.class instead of UiThread.class for lock object" am: e2fddf56 am: a7d45cf3 am: 26d64311
am: 9ad7ced2

Change-Id: If9ce77f713a473e7224142d289e29c5003617c1b
parents ed71faa2 9ad7ced2
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -45,14 +45,14 @@ public final class FgThread extends ServiceThread {
    }

    public static FgThread get() {
        synchronized (UiThread.class) {
        synchronized (FgThread.class) {
            ensureThreadLocked();
            return sInstance;
        }
    }

    public static Handler getHandler() {
        synchronized (UiThread.class) {
        synchronized (FgThread.class) {
            ensureThreadLocked();
            return sHandler;
        }