mirror of
https://github.com/ultrasonic/ultrasonic
synced 2025-02-16 19:50:35 +01:00
Remove unecessary null-check
This commit is contained in:
parent
2e4dde099d
commit
417496aacc
@ -536,7 +536,7 @@ public class MediaPlayerService extends Service
|
||||
{
|
||||
final MusicDirectory.Entry song = currentPlaying.getSong();
|
||||
|
||||
if (song != null && song.getBookmarkPosition() > 0 && Util.getShouldClearBookmark(MediaPlayerService.this))
|
||||
if (song.getBookmarkPosition() > 0 && Util.getShouldClearBookmark(MediaPlayerService.this))
|
||||
{
|
||||
MusicService musicService = MusicServiceFactory.getMusicService(MediaPlayerService.this);
|
||||
try
|
||||
|
Loading…
x
Reference in New Issue
Block a user