Make Conferenceable an abstract class

Bug: 21066017
Change-Id: Ibcbccfc7b1380e417b464aed9b968cbc0a6a1cc2
This commit is contained in:
Yorke Lee
2015-05-13 18:55:18 -07:00
parent c9be9f4d5b
commit abfcfdc044
6 changed files with 10 additions and 38 deletions

View File

@@ -21,6 +21,6 @@ package android.telecom;
* call with. The {@link ConnectionService} implementation will only recognize
* {@link Conferenceable}s which are {@link Connection}s or {@link Conference}s.
*/
public interface Conferenceable {
public abstract class Conferenceable {
Conferenceable() {}
}