Merge "Update comments on onApnUnthrottled" am: 1bec754c8b

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1626323

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I4de8a5e489211dcaa469608a04ac07d70afb7391
This commit is contained in:
Daniel Bright
2021-03-11 18:29:33 +00:00
committed by Automerger Merge Worker

View File

@@ -254,15 +254,15 @@ public class DataServiceCallback {
} }
/** /**
* The APN is throttled for the duration specified in * Unthrottles the APN on the current transport. There is no matching "APN throttle" method.
* {@link DataCallResponse#getRetryDurationMillis}. Calling this method unthrottles that * Instead, the APN is throttled for the time specified in
* APN. * {@link DataCallResponse#getRetryDurationMillis}.
* <p/> * <p/>
* see: {@link DataCallResponse#getRetryDurationMillis} * see: {@link DataCallResponse#getRetryDurationMillis}
* *
* @param apn Access Point Name defined by the carrier. * @param apn Access Point Name defined by the carrier.
*/ */
public void onApnUnthrottled(@NonNull String apn) { public void onApnUnthrottled(final @NonNull String apn) {
if (mCallback != null) { if (mCallback != null) {
try { try {
if (DBG) Rlog.d(TAG, "onApnUnthrottled"); if (DBG) Rlog.d(TAG, "onApnUnthrottled");