Appese checkstyle + pmd.

This commit is contained in:
Peter Serwylo 2016-04-22 23:53:13 +10:00
parent 3ebeec0b87
commit 7e83189f5b
3 changed files with 4 additions and 7 deletions

View File

@ -2,17 +2,14 @@ package org.fdroid.fdroid.net;
import android.app.IntentService;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.content.Context;
import android.content.Intent;
import android.content.pm.PackageManager;
import android.net.Uri;
import android.os.Process;
import android.support.v4.app.NotificationCompat;
import android.support.v4.app.TaskStackBuilder;
import android.text.TextUtils;
import org.fdroid.fdroid.AppDetails;
import org.fdroid.fdroid.R;
import org.fdroid.fdroid.Utils;
import org.fdroid.fdroid.data.App;

View File

@ -380,7 +380,7 @@ public class DownloaderService extends Service {
return false;
}
Integer what = QUEUE_WHATS.get(urlString);
return (what != null && serviceHandler.hasMessages(what));
return what != null && serviceHandler.hasMessages(what);
}
/**