summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDaisuke Miyakawa <dmiyakawa@google.com>2011-07-19 08:34:02 -0700
committerDaisuke Miyakawa <dmiyakawa@google.com>2011-07-19 08:35:22 -0700
commit5192e36f6c137899e9745b65877324c1974a2d6b (patch)
tree3310ab639d96f140bce090c9b75c50f8b39b061d /common
parent491c1590357075a6a52249c6e8e1597d93939c93 (diff)
downloadandroid_frameworks_ex-5192e36f6c137899e9745b65877324c1974a2d6b.tar.gz
android_frameworks_ex-5192e36f6c137899e9745b65877324c1974a2d6b.tar.bz2
android_frameworks_ex-5192e36f6c137899e9745b65877324c1974a2d6b.zip
Use HC MR3's verison code instead of MR2's
Bug: 5047405 Change-Id: I479778c36b2e6706dd0d171bfbe9123cc45c0217
Diffstat (limited to 'common')
-rw-r--r--common/java/com/android/common/contacts/DataUsageStatUpdater.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/java/com/android/common/contacts/DataUsageStatUpdater.java b/common/java/com/android/common/contacts/DataUsageStatUpdater.java
index bc1f8ea..de1cddd 100644
--- a/common/java/com/android/common/contacts/DataUsageStatUpdater.java
+++ b/common/java/com/android/common/contacts/DataUsageStatUpdater.java
@@ -203,8 +203,8 @@ public class DataUsageStatUpdater {
// From ICS we can use per-contact-method structure. We'll check if the device supports it
// and call the API.
//
- // STOPSHIP: Use 13 or later when we're sure ICS has correct SDK version
- if (Build.VERSION.SDK_INT >= 12) {
+ // STOPSHIP: Use 14 or later when we're sure ICS has correct SDK version
+ if (Build.VERSION.SDK_INT >= 13) {
if (dataIds.isEmpty()) {
if (Log.isLoggable(TAG, Log.DEBUG)) {
Log.d(TAG, "Given list for data IDs is null. Ignoring.");