summaryrefslogtreecommitdiffstats
path: root/src/com/android/providers/contacts/VoicemailContentTable.java
diff options
context:
space:
mode:
authorFlavio Lerda <flerda@google.com>2011-07-26 13:14:58 +0100
committerFlavio Lerda <flerda@google.com>2011-07-26 15:40:57 +0100
commit94cc8c65bc46f60b912091d3037376e15b74da0f (patch)
treee4881193d24bf985ba9e5128f487c1af52dd9a7e /src/com/android/providers/contacts/VoicemailContentTable.java
parent9a5dfea6acfb15cff4654e10ea96ecd50a4d15b5 (diff)
downloadpackages_providers_ContactsProvider-94cc8c65bc46f60b912091d3037376e15b74da0f.zip
packages_providers_ContactsProvider-94cc8c65bc46f60b912091d3037376e15b74da0f.tar.gz
packages_providers_ContactsProvider-94cc8c65bc46f60b912091d3037376e15b74da0f.tar.bz2
Do not expose the NEW column in the Voicemail provider.
We added the IS_READ column, so that we can distinguish between items that are new and items that have not been read (or heard, for voicemail). However, there is no reason to expose the NEW status of voicemail, since that is about whether the user should be notified and it is handled entirely by the content provider and Contacts application. This is part of the changes needed to fix notifications for voicemails. Bug: 5036195 Change-Id: I74d760a73d5ffbbb6eb26f2dbe7c7ca2a92ad2d6
Diffstat (limited to 'src/com/android/providers/contacts/VoicemailContentTable.java')
-rw-r--r--src/com/android/providers/contacts/VoicemailContentTable.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/com/android/providers/contacts/VoicemailContentTable.java b/src/com/android/providers/contacts/VoicemailContentTable.java
index 66d9f5a..19961c4 100644
--- a/src/com/android/providers/contacts/VoicemailContentTable.java
+++ b/src/com/android/providers/contacts/VoicemailContentTable.java
@@ -52,7 +52,6 @@ public class VoicemailContentTable implements VoicemailTable.Delegate {
.add(Voicemails.NUMBER)
.add(Voicemails.DATE)
.add(Voicemails.DURATION)
- .add(Voicemails.NEW)
.add(Voicemails.IS_READ)
.add(Voicemails.STATE)
.add(Voicemails.SOURCE_DATA)