summaryrefslogtreecommitdiffstats
path: root/telecomm
diff options
context:
space:
mode:
authorSantos Cordon <santoscordon@google.com>2014-10-23 10:20:12 -0700
committerSantos Cordon <santoscordon@google.com>2014-10-23 10:20:12 -0700
commit6c4ce4020649db7a4e6f566eed80741ea61f98be (patch)
tree8325694b9151e8605912bebe089edfa0fd276272 /telecomm
parentf4d065e5867eda35f13c13dd9e979d1bc3d78e8a (diff)
downloadframeworks_base-6c4ce4020649db7a4e6f566eed80741ea61f98be.zip
frameworks_base-6c4ce4020649db7a4e6f566eed80741ea61f98be.tar.gz
frameworks_base-6c4ce4020649db7a4e6f566eed80741ea61f98be.tar.bz2
Remove SystemApi annotations.
SystemApi only makes sense for hidden APIs. Bug: 18097290 Change-Id: I76af5f54321c4010334ef419bb7e066663ec784c
Diffstat (limited to 'telecomm')
-rw-r--r--telecomm/java/android/telecom/TelecomManager.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/telecomm/java/android/telecom/TelecomManager.java b/telecomm/java/android/telecom/TelecomManager.java
index 168ac41..d222ea0 100644
--- a/telecomm/java/android/telecom/TelecomManager.java
+++ b/telecomm/java/android/telecom/TelecomManager.java
@@ -587,7 +587,6 @@ public class TelecomManager {
*
* @param account The complete {@link PhoneAccount}.
*/
- @SystemApi
public void registerPhoneAccount(PhoneAccount account) {
try {
if (isServiceConnected()) {
@@ -603,7 +602,6 @@ public class TelecomManager {
*
* @param accountHandle A {@link PhoneAccountHandle} for the {@link PhoneAccount} to unregister.
*/
- @SystemApi
public void unregisterPhoneAccount(PhoneAccountHandle accountHandle) {
try {
if (isServiceConnected()) {
@@ -617,7 +615,6 @@ public class TelecomManager {
/**
* Remove all Accounts that belong to the calling package from the system.
*/
- @SystemApi
public void clearAccounts() {
try {
if (isServiceConnected()) {
@@ -650,7 +647,6 @@ public class TelecomManager {
* Requires permission: {@link android.Manifest.permission#READ_PHONE_STATE}
* </p>
*/
- @SystemApi
public boolean isInCall() {
try {
if (isServiceConnected()) {
@@ -802,7 +798,6 @@ public class TelecomManager {
* @param extras A bundle that will be passed through to
* {@link ConnectionService#onCreateIncomingConnection}.
*/
- @SystemApi
public void addNewIncomingCall(PhoneAccountHandle phoneAccount, Bundle extras) {
try {
if (isServiceConnected()) {