Loading packages/SystemUI/src/com/android/systemui/statusbar/NotificationViewHierarchyManager.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; } Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/NotificationViewHierarchyManager.java +2 −2 Original line number Diff line number Diff line Loading @@ -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; } Loading