summaryrefslogtreecommitdiffstats
path: root/telecomm/java/android/telecom/ConnectionService.java
diff options
context:
space:
mode:
authorTyler Gunn <tgunn@google.com>2015-04-20 09:13:01 -0700
committerTyler Gunn <tgunn@google.com>2015-04-20 09:13:01 -0700
commitdf2cbc8989e624cd6a1d732549ea4a4f00852508 (patch)
tree3b3bfd1f9ebd132e2a3df62b38e1bb270ccead7e /telecomm/java/android/telecom/ConnectionService.java
parent56d16568c0233dacec8f3c20cc987b2b68298e7a (diff)
downloadframeworks_base-df2cbc8989e624cd6a1d732549ea4a4f00852508.zip
frameworks_base-df2cbc8989e624cd6a1d732549ea4a4f00852508.tar.gz
frameworks_base-df2cbc8989e624cd6a1d732549ea4a4f00852508.tar.bz2
API Cleanup - rename IConferenceable to Conferenceable.
Bug: 20165255 Change-Id: If4cb323749b6ef9e8657506434d760d07c34167f
Diffstat (limited to 'telecomm/java/android/telecom/ConnectionService.java')
-rw-r--r--telecomm/java/android/telecom/ConnectionService.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/telecomm/java/android/telecom/ConnectionService.java b/telecomm/java/android/telecom/ConnectionService.java
index e36d32b..89c5667 100644
--- a/telecomm/java/android/telecom/ConnectionService.java
+++ b/telecomm/java/android/telecom/ConnectionService.java
@@ -539,7 +539,7 @@ public abstract class ConnectionService extends Service {
@Override
public void onConferenceablesChanged(
- Connection connection, List<IConferenceable> conferenceables) {
+ Connection connection, List<Conferenceable> conferenceables) {
mAdapter.setConferenceableConnections(
mIdByConnection.get(connection),
createIdList(conferenceables));
@@ -1176,14 +1176,14 @@ public abstract class ConnectionService extends Service {
/**
* Builds a list of {@link Connection} and {@link Conference} IDs based on the list of
- * {@link IConferenceable}s passed in.
+ * {@link Conferenceable}s passed in.
*
- * @param conferenceables The {@link IConferenceable} connections and conferences.
+ * @param conferenceables The {@link Conferenceable} connections and conferences.
* @return List of string conference and call Ids.
*/
- private List<String> createIdList(List<IConferenceable> conferenceables) {
+ private List<String> createIdList(List<Conferenceable> conferenceables) {
List<String> ids = new ArrayList<>();
- for (IConferenceable c : conferenceables) {
+ for (Conferenceable c : conferenceables) {
// Only allow Connection and Conference conferenceables.
if (c instanceof Connection) {
Connection connection = (Connection) c;