diff options
| author | 2009-08-25 19:05:12 -0700 | |
|---|---|---|
| committer | 2009-08-25 19:05:47 -0700 | |
| commit | ba176d6c8ad581e65b46bd6835c0737e74ef453d (patch) | |
| tree | 5c1f0622490de52f2544545d7bc4e0b7e500f630 | |
| parent | 09f4c94233502eeb19d4a4c8f05cd331e64c4992 (diff) | |
Don't reference hidden API from comments.
| -rw-r--r-- | core/java/android/provider/Contacts.java | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/core/java/android/provider/Contacts.java b/core/java/android/provider/Contacts.java index 1ec34169eb09..181a52940d81 100644 --- a/core/java/android/provider/Contacts.java +++ b/core/java/android/provider/Contacts.java @@ -36,24 +36,16 @@ import java.io.InputStream; /** * The Contacts provider stores all information about contacts. - * - * @deprecated This API has been replaced by {@link ContactsContract} as of - * {@link Build.VERSION#SDK} = 5. */ @Deprecated public class Contacts { private static final String TAG = "Contacts"; - /** - * @deprecated Replaced by {@link ContactsContract#AUTHORITY}. - */ @Deprecated public static final String AUTHORITY = "contacts"; /** * The content:// style URL for this provider - * - * @deprecated Replaced by {@link ContactsContract#AUTHORITY_URI}. */ @Deprecated public static final Uri CONTENT_URI = |