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

Commit c5fc4611 authored by Robert Carr's avatar Robert Carr
Browse files

SurfaceControl: Fix Global Transaction locking error.

Simple mistake. Change from one branch didn't get propagated forward
during review.

Bug: 69974273
Test: Boots
Change-Id: I4df8a939f2b38202ada2d1dc150b56ec5dc8f496
parent 3ce82e34
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -667,7 +667,7 @@ public class SurfaceControl {
     */
    @Deprecated
    public static void mergeToGlobalTransaction(Transaction t) {
        synchronized(sGlobalTransaction) {
        synchronized(SurfaceControl.class) {
            sGlobalTransaction.merge(t);
        }
    }