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

Commit d9311a20 authored by Austin Borger's avatar Austin Borger Committed by Automerger Merge Worker
Browse files

Merge "UidObserverController: Fix incorrect usage of binarySearch return...

Merge "UidObserverController: Fix incorrect usage of binarySearch return value" into udc-dev am: fbcc05a9

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/23095316



Change-Id: I49f7fa7195496494b162add8f70a3e43bbd16a04
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents 283556a0 fbcc05a9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -557,7 +557,7 @@ public class UidObserverController {
                return true;
            }

            return Arrays.binarySearch(mUids, uid) != -1;
            return Arrays.binarySearch(mUids, uid) >= 0;
        }

        void addUid(int uid) {