Merge "Replace user with debuggable check in ConnectivityService"

This commit is contained in:
Remi NGUYEN VAN
2021-03-05 05:09:46 +00:00
committed by Gerrit Code Review

View File

@@ -7255,7 +7255,7 @@ public class ConnectivityService extends IConnectivityManager.Stub
}
void addRequestReassignment(@NonNull final RequestReassignment reassignment) {
if (!Build.IS_USER) {
if (Build.IS_DEBUGGABLE) {
// The code is never supposed to add two reassignments of the same request. Make
// sure this stays true, but without imposing this expensive check on all
// reassignments on all user devices.