diff options
author | Brad Ebinger <breadley@google.com> | 2021-04-30 23:42:41 +0000 |
---|---|---|
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | 2021-04-30 23:42:41 +0000 |
commit | 8a42a4734042841a0a5984fb981ad90a0a355884 (patch) | |
tree | a8318c4e9af4d4c9689007ea3f8066cbdada0f23 /telephony/java | |
parent | 6e1398b55f0cfb879329187d0b42341fc92de782 (diff) | |
parent | 4678139c3bf29e4dbb084f39df8d864cab668c14 (diff) |
Merge "Clarify DelegateManagerCallback based on API review" am: 95fe9715bc am: 4678139c3b
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1690269
Change-Id: I992e94cb58883b495bad31361801ce4b809cdf6b
Diffstat (limited to 'telephony/java')
-rw-r--r-- | telephony/java/android/telephony/ims/DelegateMessageCallback.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/telephony/java/android/telephony/ims/DelegateMessageCallback.java b/telephony/java/android/telephony/ims/DelegateMessageCallback.java index 0d82a54a0f32..a008cfdbc535 100644 --- a/telephony/java/android/telephony/ims/DelegateMessageCallback.java +++ b/telephony/java/android/telephony/ims/DelegateMessageCallback.java @@ -35,12 +35,12 @@ import android.telephony.ims.stub.SipDelegate; public interface DelegateMessageCallback { /** - * Send a new incoming SIP message to the remote application for processing. + * Sends a new incoming SIP message to the remote application for processing. */ void onMessageReceived(@NonNull SipMessage message); /** - * Notify the remote application that a previous request to send a SIP message using + * Notifies the remote application that a previous request to send a SIP message using * {@link SipDelegate#sendMessage} has succeeded. * * @param viaTransactionId The transaction ID found in the via header field of the @@ -49,7 +49,7 @@ public interface DelegateMessageCallback { void onMessageSent(@NonNull String viaTransactionId); /** - * Notify the remote application that a previous request to send a SIP message using + * Notifies the remote application that a previous request to send a SIP message using * {@link SipDelegate#sendMessage} has failed. * * @param viaTransactionId The Transaction ID found in the via header field of the previously |