mirror of
https://gitlab.com/ultrasonic/ultrasonic.git
synced 2025-04-24 12:50:58 +03:00
Add nullability annotation
This commit is contained in:
parent
029f0fa4da
commit
e0df24182e
@ -1,5 +1,7 @@
|
||||
package org.moire.ultrasonic.service;
|
||||
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import org.moire.ultrasonic.domain.MusicDirectory;
|
||||
import org.moire.ultrasonic.util.LRUCache;
|
||||
import org.moire.ultrasonic.util.ShufflePlayBuffer;
|
||||
@ -28,6 +30,8 @@ public class Downloader
|
||||
{
|
||||
public final List<DownloadFile> downloadList = new ArrayList<>();
|
||||
public final List<DownloadFile> backgroundDownloadList = new ArrayList<>();
|
||||
|
||||
@Nullable
|
||||
public DownloadFile currentDownloading;
|
||||
|
||||
private final ShufflePlayBuffer shufflePlayBuffer;
|
||||
|
@ -409,9 +409,7 @@ class MediaPlayerController(
|
||||
reset()
|
||||
|
||||
// Cancel current download, if necessary.
|
||||
if (downloader.currentDownloading != null) {
|
||||
downloader.currentDownloading.cancelDownload()
|
||||
}
|
||||
downloader.currentDownloading?.cancelDownload()
|
||||
} else {
|
||||
jukeboxMediaPlayer.stopJukeboxService()
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user