From 93b4956f32cf448f9dfc0a1797b2baca4fdbf69a Mon Sep 17 00:00:00 2001 From: Mario Zorz Date: Wed, 12 Sep 2018 17:31:20 -0300 Subject: [PATCH] removed extra newlines and joined linebreaks --- .../analytics/service/InstallationReferrerJobService.java | 8 ++------ .../service/InstallationReferrerServiceLogic.java | 1 - 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/WordPress/src/main/java/org/wordpress/android/util/analytics/service/InstallationReferrerJobService.java b/WordPress/src/main/java/org/wordpress/android/util/analytics/service/InstallationReferrerJobService.java index c4d26f9c71dc..8cc9ecc562c1 100644 --- a/WordPress/src/main/java/org/wordpress/android/util/analytics/service/InstallationReferrerJobService.java +++ b/WordPress/src/main/java/org/wordpress/android/util/analytics/service/InstallationReferrerJobService.java @@ -8,7 +8,6 @@ import org.wordpress.android.util.AppLog; import org.wordpress.android.util.AppLog.T; - /** * Background service to connect to Google Play Store's Install Referrer API to * securely retrieve referral content from Google Play. @@ -26,11 +25,8 @@ public class InstallationReferrerJobService extends JobService implements @Override public boolean onStartJob(JobParameters params) { AppLog.i(T.UTILS, "installation referrer job service > started"); - InstallationReferrerServiceLogic logic = - new InstallationReferrerServiceLogic(this, this); - logic.performTask( - new Bundle(params.getExtras()), - params); + InstallationReferrerServiceLogic logic = new InstallationReferrerServiceLogic(this, this); + logic.performTask(new Bundle(params.getExtras()), params); return true; } diff --git a/WordPress/src/main/java/org/wordpress/android/util/analytics/service/InstallationReferrerServiceLogic.java b/WordPress/src/main/java/org/wordpress/android/util/analytics/service/InstallationReferrerServiceLogic.java index c0088869526a..1bcd3a48ab96 100644 --- a/WordPress/src/main/java/org/wordpress/android/util/analytics/service/InstallationReferrerServiceLogic.java +++ b/WordPress/src/main/java/org/wordpress/android/util/analytics/service/InstallationReferrerServiceLogic.java @@ -19,7 +19,6 @@ import static org.wordpress.android.util.analytics.service.InstallationReferrerServiceStarter.ARG_REFERRER; - /** * Background service to retrieve installation referrer information. */