DownloadService.onStartCommand() nullable Intent

This commit is contained in:
Daniel Brain 2020-02-25 15:51:58 +11:00
parent ab21f885d4
commit aa9b85c66e

View File

@ -595,7 +595,7 @@ public abstract class DownloadService extends Service {
} }
@Override @Override
public int onStartCommand(Intent intent, int flags, int startId) { public int onStartCommand(@Nullable Intent intent, int flags, int startId) {
lastStartId = startId; lastStartId = startId;
taskRemoved = false; taskRemoved = false;
@Nullable String intentAction = null; @Nullable String intentAction = null;