Commit aa9b85c6 by Daniel Brain

DownloadService.onStartCommand() nullable Intent

parent ab21f885
......@@ -595,7 +595,7 @@ public abstract class DownloadService extends Service {
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
public int onStartCommand(@Nullable Intent intent, int flags, int startId) {
lastStartId = startId;
taskRemoved = false;
@Nullable String intentAction = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment