diff options
author | Brad Ebinger <breadley@google.com> | 2021-04-30 22:52:15 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2021-04-30 22:52:15 +0000 |
commit | 95fe9715bc46140126ecaa7d569657c4049a57d0 (patch) | |
tree | 2c264eeb047ed202e1741efff1a5172f51cc09fb | |
parent | 6a1812c30fb9c02e5a54e21ad1f11092da61f14f (diff) | |
parent | ebcd7d968bc6f055f79fecfffe96e78509c9c24f (diff) |
Merge "Clarify DelegateManagerCallback based on API review"
-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 |