OSDN Git Service

Removed fake data
authorSalvador Martinez <dehboxturtle@google.com>
Fri, 16 Dec 2016 00:13:38 +0000 (16:13 -0800)
committerSalvador Martinez <dehboxturtle@google.com>
Fri, 16 Dec 2016 23:34:59 +0000 (15:34 -0800)
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/survey/SurveyMixin.java

index 5e0754a..74b7f10 100644 (file)
@@ -62,7 +62,7 @@ public class SurveyMixin implements LifecycleObserver, OnResume, OnPause {
                 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);
                 }