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

Commit fbcc05a9 authored by Austin Borger's avatar Austin Borger Committed by Android (Google) Code Review
Browse files

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

parents ed6ae54c 765f2521
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) {