Merge "Revert "Enforce that a PendingIntent has an explicit mutability ...""

This commit is contained in:
Ashwini Oruganti
2021-01-06 16:58:02 +00:00
committed by Android (Google) Code Review

View File

@@ -352,9 +352,7 @@ public final class PendingIntent implements Parcelable {
if (Compatibility.isChangeEnabled(PENDING_INTENT_EXPLICIT_MUTABILITY_REQUIRED)
&& !flagImmutableSet && !flagMutableSet) {
Log.wtf(TAG, msg);
throw new IllegalArgumentException(
"Please specify an explicit mutability flag (FLAG_IMMUTABLE or FLAG_MUTABLE)");
Log.e(TAG, msg);
}
}