Loading packages/SystemUI/src/com/android/systemui/statusbar/policy/ZenModeControllerImpl.java +0 −4 Original line number Diff line number Diff line Loading @@ -113,10 +113,6 @@ public class ZenModeControllerImpl extends CurrentUserTracker implements ZenMode @Override public void addCallback(Callback callback) { if (callback == null) { Slog.e(TAG, "Attempted to add a null callback."); return; } mCallbacks.add(callback); } Loading packages/SystemUI/src/com/android/systemui/util/Utils.java +5 −2 Original line number Diff line number Diff line Loading @@ -26,11 +26,14 @@ public class Utils { /** * Allows lambda iteration over a list. It is done in reverse order so it is safe * to add or remove items during the iteration. * to add or remove items during the iteration. Skips over null items. */ public static <T> void safeForeach(List<T> list, Consumer<T> c) { for (int i = list.size() - 1; i >= 0; i--) { c.accept(list.get(i)); T item = list.get(i); if (item != null) { c.accept(item); } } } Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/policy/ZenModeControllerImpl.java +0 −4 Original line number Diff line number Diff line Loading @@ -113,10 +113,6 @@ public class ZenModeControllerImpl extends CurrentUserTracker implements ZenMode @Override public void addCallback(Callback callback) { if (callback == null) { Slog.e(TAG, "Attempted to add a null callback."); return; } mCallbacks.add(callback); } Loading
packages/SystemUI/src/com/android/systemui/util/Utils.java +5 −2 Original line number Diff line number Diff line Loading @@ -26,11 +26,14 @@ public class Utils { /** * Allows lambda iteration over a list. It is done in reverse order so it is safe * to add or remove items during the iteration. * to add or remove items during the iteration. Skips over null items. */ public static <T> void safeForeach(List<T> list, Consumer<T> c) { for (int i = list.size() - 1; i >= 0; i--) { c.accept(list.get(i)); T item = list.get(i); if (item != null) { c.accept(item); } } } Loading