summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Tyler Gunn <tgunn@google.com> 2023-05-05 22:47:57 +0000
committer Android (Google) Code Review <android-gerrit@google.com> 2023-05-05 22:47:57 +0000
commit5bfe44b049d9dd5b41e92db6df82078b085fae1e (patch)
tree2077e00cc0e2e7095404cb73154a37d2f27b5d83
parent5cd5d41d24bef605c3908254a281337dbf465ed6 (diff)
parente8c5a298d33c11e3b04c939e3c49be3615e77340 (diff)
Merge "Clarify REMOTE disconnect cause API docs." into udc-dev
-rw-r--r--telecomm/java/android/telecom/DisconnectCause.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/telecomm/java/android/telecom/DisconnectCause.java b/telecomm/java/android/telecom/DisconnectCause.java
index b003f59d5e81..331caa1bad7a 100644
--- a/telecomm/java/android/telecom/DisconnectCause.java
+++ b/telecomm/java/android/telecom/DisconnectCause.java
@@ -43,8 +43,8 @@ public final class DisconnectCause implements Parcelable {
/** Disconnected because of a local user-initiated action, such as hanging up. */
public static final int LOCAL = TelecomProtoEnums.LOCAL; // = 2
/**
- * Disconnected because of a remote user-initiated action, such as the other party hanging up
- * up.
+ * Disconnected because the remote party hung up an ongoing call, or because an outgoing call
+ * was not answered by the remote party.
*/
public static final int REMOTE = TelecomProtoEnums.REMOTE; // = 3
/** Disconnected because it has been canceled. */