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

Commit 40118fa1 authored by Ned Burns's avatar Ned Burns Committed by android-build-merger
Browse files

Merge "Change NVHM protection from crash to Log.wtf" into qt-dev

am: 5540281a

Change-Id: I1d8e6763a2b7c39e3ad64408ed9b0bfdb772af9e
parents 3140b2c9 5540281a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -465,14 +465,14 @@ public class NotificationViewHierarchyManager implements DynamicPrivacyControlle

    private void beginUpdate() {
        if (mPerformingUpdate) {
            throw new IllegalStateException("Re-entrant code during update.");
            Log.wtf(TAG, "Re-entrant code during update", new Exception());
        }
        mPerformingUpdate = true;
    }

    private void endUpdate() {
        if (!mPerformingUpdate) {
            throw new IllegalStateException("Manager state has become desynced.");
            Log.wtf(TAG, "Manager state has become desynced", new Exception());
        }
        mPerformingUpdate = false;
    }