summaryrefslogtreecommitdiffstats
path: root/core/java/com
diff options
context:
space:
mode:
authorChris Wren <cwren@android.com>2013-08-04 01:04:35 -0400
committerChris Wren <cwren@android.com>2013-08-04 01:04:35 -0400
commitf76ff0552bbef531c33ef0cb322932d03b7e6632 (patch)
treec56e3606ba743c61578d38f1656a7933bd4b7a9d /core/java/com
parent5c7132560aac40f291726095b761a0c46ee32b09 (diff)
downloadframeworks_base-f76ff0552bbef531c33ef0cb322932d03b7e6632.zip
frameworks_base-f76ff0552bbef531c33ef0cb322932d03b7e6632.tar.gz
frameworks_base-f76ff0552bbef531c33ef0cb322932d03b7e6632.tar.bz2
disable notification scorer by default.
Bug: 10163077 Change-Id: Icd03786dfe59cb26281738ae0be28d14cb5741f9
Diffstat (limited to 'core/java/com')
-rw-r--r--core/java/com/android/internal/notification/DemoContactNotificationScorer.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/com/android/internal/notification/DemoContactNotificationScorer.java b/core/java/com/android/internal/notification/DemoContactNotificationScorer.java
index 081a371..62529e9 100644
--- a/core/java/com/android/internal/notification/DemoContactNotificationScorer.java
+++ b/core/java/com/android/internal/notification/DemoContactNotificationScorer.java
@@ -163,7 +163,7 @@ public class DemoContactNotificationScorer implements NotificationScorer {
if (DBG) Slog.v(TAG, "Initializing " + getClass().getSimpleName() + ".");
mContext = context;
mEnabled = ENABLE_CONTACT_SCORER && 1 == Settings.Global.getInt(
- mContext.getContentResolver(), SETTING_ENABLE_SCORER, 1);
+ mContext.getContentResolver(), SETTING_ENABLE_SCORER, 0);
}
@Override