Skip to content

Commit

Permalink
removed extra newlines and joined linebreaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mzorz committed Sep 12, 2018
1 parent 7d4e91a commit 93b4956
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

import static org.wordpress.android.util.analytics.service.InstallationReferrerServiceStarter.ARG_REFERRER;


/**
* Background service to retrieve installation referrer information.
*/
Expand Down

0 comments on commit 93b4956

Please sign in to comment.