summaryrefslogtreecommitdiffstats
path: root/telecomm/java
diff options
context:
space:
mode:
authorSailesh Nepal <sail@google.com>2015-01-31 15:17:19 -0800
committerSailesh Nepal <sail@google.com>2015-01-31 15:25:51 -0800
commit1ed8561ac65b9d8eb3d9f32b0830a60442aa1c49 (patch)
treef0524728f4f5138780cc7eacdf66c59992a83b0a /telecomm/java
parent16bce33af6573e0875dcfd2220afe3582de8f62b (diff)
downloadframeworks_base-1ed8561ac65b9d8eb3d9f32b0830a60442aa1c49.zip
frameworks_base-1ed8561ac65b9d8eb3d9f32b0830a60442aa1c49.tar.gz
frameworks_base-1ed8561ac65b9d8eb3d9f32b0830a60442aa1c49.tar.bz2
Update setNextPostDialWaitChar API
This CL does the following: - make the API public - rename it from setNextPostDialWaitChar to setNextPostDialChar - remove reference to "wait" from the API documentation BUG: 19216940, 19216942 Change-Id: Ic4c7f44a900fd79875318d8c565c3aacaa42b962
Diffstat (limited to 'telecomm/java')
-rw-r--r--telecomm/java/android/telecom/Connection.java7
1 files changed, 2 insertions, 5 deletions
diff --git a/telecomm/java/android/telecom/Connection.java b/telecomm/java/android/telecom/Connection.java
index a180f44..b89ce0e 100644
--- a/telecomm/java/android/telecom/Connection.java
+++ b/telecomm/java/android/telecom/Connection.java
@@ -1001,14 +1001,11 @@ public abstract class Connection implements IConferenceable {
/**
* Informs listeners that this {@code Connection} has processed a character in the post-dial
* started state. This is done when (a) the {@code Connection} is issuing a DTMF sequence;
- * (b) it has encountered a "wait" character; and (c) it wishes to signal Telecom to play
- * the corresponding DTMF tone locally.
+ * and (b) it wishes to signal Telecom to play the corresponding DTMF tone locally.
*
* @param nextChar The DTMF character that was just processed by the {@code Connection}.
- *
- * @hide
*/
- public final void setNextPostDialWaitChar(char nextChar) {
+ public final void setNextPostDialChar(char nextChar) {
checkImmutable();
for (Listener l : mListeners) {
l.onPostDialChar(this, nextChar);