summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorDaniel Lehmann <lehmannd@google.com>2012-04-13 13:29:49 -0700
committerDaniel Lehmann <lehmannd@google.com>2012-04-13 13:29:49 -0700
commita1620dc521c338ef6bd2cb8d39548933135ed1fd (patch)
treeb4b872a983ecf9c4761a1c81506eed2197b73b73 /core
parent7358fbfeb2febb60085067fcacc192f429b06545 (diff)
downloadframeworks_base-a1620dc521c338ef6bd2cb8d39548933135ed1fd.zip
frameworks_base-a1620dc521c338ef6bd2cb8d39548933135ed1fd.tar.gz
frameworks_base-a1620dc521c338ef6bd2cb8d39548933135ed1fd.tar.bz2
Depcrecate increment function (should have been done back in ICS)
Change-Id: I5c7d4d80a5d10b6ed2460f6dac30e53cc2714521
Diffstat (limited to 'core')
-rw-r--r--core/java/android/provider/ContactsContract.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/java/android/provider/ContactsContract.java b/core/java/android/provider/ContactsContract.java
index e4729c7..ce4e614 100644
--- a/core/java/android/provider/ContactsContract.java
+++ b/core/java/android/provider/ContactsContract.java
@@ -1536,7 +1536,11 @@ public final class ContactsContract {
*
* @param resolver the ContentResolver to use
* @param contactId the person who was contacted
+ *
+ * @deprecated The class DataUsageStatUpdater of the Android support library should
+ * be used instead.
*/
+ @Deprecated
public static void markAsContacted(ContentResolver resolver, long contactId) {
Uri uri = ContentUris.withAppendedId(CONTENT_URI, contactId);
ContentValues values = new ContentValues();