Merge "Replace user with debuggable check in ConnectivityService" am: a923322f24
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1615085 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: Ieb729be68e810972506b1d8a3960dfc371a294b1
This commit is contained in:
@@ -7255,7 +7255,7 @@ public class ConnectivityService extends IConnectivityManager.Stub
|
|||||||
}
|
}
|
||||||
|
|
||||||
void addRequestReassignment(@NonNull final RequestReassignment reassignment) {
|
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
|
// 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
|
// sure this stays true, but without imposing this expensive check on all
|
||||||
// reassignments on all user devices.
|
// reassignments on all user devices.
|
||||||
|
|||||||
Reference in New Issue
Block a user