From b8d9c076a490de115b4e8539e5c63d24e9a8992c Mon Sep 17 00:00:00 2001 From: Don Turner Date: Wed, 3 Jun 2020 16:58:31 +0100 Subject: [PATCH] Add whitespace --- .../main/java/com/example/android/uamp/media/MusicService.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/main/java/com/example/android/uamp/media/MusicService.kt b/common/src/main/java/com/example/android/uamp/media/MusicService.kt index 9cf3ebbfe..c51ac5d80 100644 --- a/common/src/main/java/com/example/android/uamp/media/MusicService.kt +++ b/common/src/main/java/com/example/android/uamp/media/MusicService.kt @@ -356,7 +356,7 @@ open class MusicService : MediaBrowserServiceCompat() { // If playback is paused we remove the foreground state which allows the // notification to be dismissed. An alternative would be to provide a "close" // button in the notification which stops playback and clears the notification. - if (playbackState == Player.STATE_READY){ + if (playbackState == Player.STATE_READY) { if (!playWhenReady) stopForeground(false) } }