mirror of
https://github.com/samsonjs/media.git
synced 2026-04-27 15:07:40 +00:00
DownloadService.onStartCommand() nullable Intent
This commit is contained in:
parent
ab21f885d4
commit
aa9b85c66e
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue