summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Bright <dbright@google.com>2021-03-10 11:39:59 -0800
committerDaniel Bright <dbright@google.com>2021-03-10 11:39:59 -0800
commit58100f4d4cc27db2d4381705fe2c08aa039279a8 (patch)
treebe9bc5799cb58e01ee8f50393975b4bb203b759c
parent0272e96327f70ad35fad3efb2e46b5a7ef986e0a (diff)
Removed EpsQosSessionAttributes#onCreate
* The method EpsQosSessionAttributes#onCreate was not being used Bug: 181562173 Test: m Change-Id: I4321961f41c18f0abe6c5e837fe3c4a41beb63b7
-rw-r--r--core/api/system-current.txt1
-rw-r--r--telephony/java/android/telephony/data/EpsBearerQosSessionAttributes.java10
2 files changed, 0 insertions, 11 deletions
diff --git a/core/api/system-current.txt b/core/api/system-current.txt
index 505ac141158a..c56b2aa9b8af 100644
--- a/core/api/system-current.txt
+++ b/core/api/system-current.txt
@@ -10558,7 +10558,6 @@ package android.telephony.data {
}
public final class EpsBearerQosSessionAttributes implements android.os.Parcelable android.net.QosSessionAttributes {
- method @NonNull public static android.telephony.data.EpsBearerQosSessionAttributes create(@NonNull android.os.Parcel);
method public int describeContents();
method public long getGuaranteedDownlinkBitRate();
method public long getGuaranteedUplinkBitRate();
diff --git a/telephony/java/android/telephony/data/EpsBearerQosSessionAttributes.java b/telephony/java/android/telephony/data/EpsBearerQosSessionAttributes.java
index 041edc00c4d2..406c38bf60ef 100644
--- a/telephony/java/android/telephony/data/EpsBearerQosSessionAttributes.java
+++ b/telephony/java/android/telephony/data/EpsBearerQosSessionAttributes.java
@@ -184,16 +184,6 @@ public final class EpsBearerQosSessionAttributes implements Parcelable, QosSessi
mRemoteAddresses = Collections.unmodifiableList(remoteAddresses);
}
- /**
- * Creates attributes based off of a parcel
- * @param in the parcel
- * @return the attributes
- */
- @NonNull
- public static EpsBearerQosSessionAttributes create(@NonNull final Parcel in) {
- return new EpsBearerQosSessionAttributes(in);
- }
-
@Override
public int describeContents() {
return 0;