Merge "Use IntentFilter.toLongString() instead of IntentFilter.toString()" into udc-dev

This commit is contained in:
Liana Kazanova
2023-04-07 21:05:16 +00:00
committed by Android (Google) Code Review

View File

@@ -13713,7 +13713,7 @@ public class ActivityManagerService extends IActivityManager.Stub
if (!sdkSandboxManagerLocal.canRegisterBroadcastReceiver(
/*IntentFilter=*/ filter, flags, onlyProtectedBroadcasts)) {
throw new SecurityException("SDK sandbox not allowed to register receiver"
+ " with the given IntentFilter: " + filter.toString());
+ " with the given IntentFilter: " + filter.toLongString());
}
}