summaryrefslogtreecommitdiff
path: root/java/com/android/dialer/callintent
diff options
context:
space:
mode:
authorlinyuh <linyuh@google.com>2018-06-28 20:13:52 -0700
committerCopybara-Service <copybara-piper@google.com>2018-06-28 20:14:43 -0700
commit60c1e5732085d36bdf5b49055add832222c75839 (patch)
tree4b18ade57cdb2100cbd4acec0a1d42163b3c21ef /java/com/android/dialer/callintent
parente479c7d417573ac142b336c904ce0643e010f7dd (diff)
Remove redundant @TargetApi, @RequiresApi and @SuppressWarnings
Test: Existing tests PiperOrigin-RevId: 202589482 Change-Id: I6982e4069d30032bf46caf3c9984dfc0e7196f6f
Diffstat (limited to 'java/com/android/dialer/callintent')
-rw-r--r--java/com/android/dialer/callintent/CallIntent.java3
1 files changed, 0 insertions, 3 deletions
diff --git a/java/com/android/dialer/callintent/CallIntent.java b/java/com/android/dialer/callintent/CallIntent.java
index ba61d5619..ef7aff672 100644
--- a/java/com/android/dialer/callintent/CallIntent.java
+++ b/java/com/android/dialer/callintent/CallIntent.java
@@ -198,7 +198,6 @@ public abstract class CallIntent implements Parcelable {
return intent;
}
- @SuppressWarnings("AndroidApiChecker") // Use of Java 8 APIs.
private Bundle createInCallUiIntentExtras() {
Bundle bundle = new Bundle();
stringInCallUiIntentExtras().forEach(bundle::putString);
@@ -207,7 +206,6 @@ public abstract class CallIntent implements Parcelable {
return bundle;
}
- @SuppressWarnings("AndroidApiChecker") // Use of Java 8 APIs.
private Bundle createPlaceCallExtras() {
Bundle bundle = new Bundle();
stringPlaceCallExtras().forEach(bundle::putString);
@@ -255,7 +253,6 @@ public abstract class CallIntent implements Parcelable {
return 0;
}
- @SuppressWarnings("AndroidApiChecker") // Use of Java 8 APIs.
@Override
public void writeToParcel(Parcel dest, int flags) {
dest.writeParcelable(number(), flags);