diff --git a/app/src/main/java/com/cappielloantonio/play/ui/notification/PlayingNotification.java b/app/src/main/java/com/cappielloantonio/play/ui/notification/PlayingNotification.java index 02c6e39b..f5a2cb6a 100644 --- a/app/src/main/java/com/cappielloantonio/play/ui/notification/PlayingNotification.java +++ b/app/src/main/java/com/cappielloantonio/play/ui/notification/PlayingNotification.java @@ -1,5 +1,10 @@ package com.cappielloantonio.play.ui.notification; +import static android.content.Context.NOTIFICATION_SERVICE; +import static com.cappielloantonio.play.service.MusicService.ACTION_REWIND; +import static com.cappielloantonio.play.service.MusicService.ACTION_SKIP; +import static com.cappielloantonio.play.service.MusicService.ACTION_TOGGLE; + import android.app.Notification; import android.app.NotificationChannel; import android.app.NotificationManager; @@ -23,11 +28,6 @@ import com.cappielloantonio.play.model.Song; import com.cappielloantonio.play.service.MusicService; import com.cappielloantonio.play.ui.activity.MainActivity; -import static android.content.Context.NOTIFICATION_SERVICE; -import static com.cappielloantonio.play.service.MusicService.ACTION_REWIND; -import static com.cappielloantonio.play.service.MusicService.ACTION_SKIP; -import static com.cappielloantonio.play.service.MusicService.ACTION_TOGGLE; - public class PlayingNotification { private static final int NOTIFICATION_ID = 1;