Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6bc0f7cd authored by Daniel Bright's avatar Daniel Bright
Browse files

Hide NO_THROTTLE_EXPIRY_TIME

There is no reason to expose NO_THROTTLE_EXPIRY_TIME since
the fact that the apn was not throttle can be explicitly checked
for by checking the throttle type.

Test: N/A
Bug: 175092152
Merged-In: I8888fae0037fd04e1668ab51eff91dd2bcb5e057
Change-Id: I8888fae0037fd04e1668ab51eff91dd2bcb5e057
parent c2d62406
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -10756,7 +10756,6 @@ package android.telephony.data {
    method @NonNull public android.telephony.data.ApnThrottleStatus.Builder setSlotIndex(int);
    method @NonNull public android.telephony.data.ApnThrottleStatus.Builder setThrottleExpiryTimeMillis(long);
    method @NonNull public android.telephony.data.ApnThrottleStatus.Builder setTransportType(int);
    field public static final long NO_THROTTLE_EXPIRY_TIME = -1L; // 0xffffffffffffffffL
  }
  public final class DataCallResponse implements android.os.Parcelable {
+4 −0
Original line number Diff line number Diff line
@@ -261,6 +261,10 @@ public final class ApnThrottleStatus implements Parcelable {
        private long mThrottleExpiryTimeMillis;
        private @RetryType int mRetryType;
        private @ThrottleType int mThrottleType;

        /**
         * @hide
         */
        public static final long NO_THROTTLE_EXPIRY_TIME =
                DataCallResponse.RETRY_DURATION_UNDEFINED;