From 4b69b113fb6d5679dd44c6d9cc5dbaad796a15c4 Mon Sep 17 00:00:00 2001 From: Salvador Martinez Date: Thu, 15 Dec 2016 16:13:38 -0800 Subject: [PATCH] Removed fake data Was using fake data for testing that we could attach payloads. This is no longer needed since we are now attaching real data. Test: Manual Verification on GCS Bug: 27823357 Change-Id: I055c2b2e027f721e14ea5b6b7efccd5267018b8c --- src/com/android/settings/InstrumentedPreferenceFragment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/settings/InstrumentedPreferenceFragment.java b/src/com/android/settings/InstrumentedPreferenceFragment.java index ee2c629ff95..1b3d5cd5596 100644 --- a/src/com/android/settings/InstrumentedPreferenceFragment.java +++ b/src/com/android/settings/InstrumentedPreferenceFragment.java @@ -54,7 +54,7 @@ public abstract class InstrumentedPreferenceFragment extends PreferenceFragment if (provider.getSurveyExpirationDate(activity, id) <= -1) { // register the receiver to show the survey on completion. mReceiver = provider.createAndRegisterReceiver(activity); - provider.downloadSurvey(activity, id, "fakeData"); + provider.downloadSurvey(activity, id, null /* data */); } else { provider.showSurveyIfAvailable(activity, id); }