summaryrefslogtreecommitdiffstats
path: root/telecomm/java/android/telecom
diff options
context:
space:
mode:
authorJay Shrauner <shrauner@google.com>2015-04-15 16:40:32 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2015-04-15 16:40:33 +0000
commit560a833806a46e2fd5efdc9f6354f2867def92a8 (patch)
treef73ae316a9de8414399dd3401ff9f15caf0f072a /telecomm/java/android/telecom
parentb872be875a0d4933caef45adf6d1b1e39b9fbeed (diff)
parentd53f3634a31292791ef690028b83ce1e0916d76c (diff)
downloadframeworks_base-560a833806a46e2fd5efdc9f6354f2867def92a8.zip
frameworks_base-560a833806a46e2fd5efdc9f6354f2867def92a8.tar.gz
frameworks_base-560a833806a46e2fd5efdc9f6354f2867def92a8.tar.bz2
Merge "Hide Voicemail APIs"
Diffstat (limited to 'telecomm/java/android/telecom')
-rw-r--r--telecomm/java/android/telecom/AuthenticatorService.java2
-rw-r--r--telecomm/java/android/telecom/Voicemail.java4
2 files changed, 1 insertions, 5 deletions
diff --git a/telecomm/java/android/telecom/AuthenticatorService.java b/telecomm/java/android/telecom/AuthenticatorService.java
index 7aa105d..1e43c71 100644
--- a/telecomm/java/android/telecom/AuthenticatorService.java
+++ b/telecomm/java/android/telecom/AuthenticatorService.java
@@ -19,7 +19,6 @@ import android.accounts.AbstractAccountAuthenticator;
import android.accounts.Account;
import android.accounts.AccountAuthenticatorResponse;
import android.accounts.NetworkErrorException;
-import android.annotation.SystemApi;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
@@ -32,7 +31,6 @@ import android.os.IBinder;
*
* @hide
*/
-@SystemApi
public class AuthenticatorService extends Service {
private static Authenticator mAuthenticator;
diff --git a/telecomm/java/android/telecom/Voicemail.java b/telecomm/java/android/telecom/Voicemail.java
index 186c199..f5b8052 100644
--- a/telecomm/java/android/telecom/Voicemail.java
+++ b/telecomm/java/android/telecom/Voicemail.java
@@ -16,7 +16,6 @@
package android.telecom;
-import android.annotation.SystemApi;
import android.net.Uri;
import android.os.Parcel;
import android.os.Parcelable;
@@ -26,7 +25,6 @@ import android.os.Parcelable;
*
* @hide
*/
-@SystemApi
public class Voicemail implements Parcelable {
private final Long mTimestamp;
private final String mNumber;
@@ -277,4 +275,4 @@ public class Voicemail implements Parcelable {
mIsRead = in.readInt() > 0 ? true : false;
mHasContent = in.readInt() > 0 ? true : false;
}
-} \ No newline at end of file
+}