mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-12-14 12:18:05 +00:00
Fix ktlint: remove unnecessary essary semicolons
Task :app:runKtlint /home/runner/work/NewPipe/NewPipe/app/src/main/java/org/schabi/newpipe/player/PlayerService.kt:151:85: Unnecessary semicolon (no-semi) /home/runner/work/NewPipe/NewPipe/app/src/main/java/org/schabi/newpipe/player/PlayerService.kt:152:72: Unnecessary semicolon (no-semi)
This commit is contained in:
@@ -148,8 +148,8 @@ class PlayerService : MediaBrowserServiceCompat() {
|
|||||||
// a (dummy) foreground notification, otherwise we'd incur in
|
// a (dummy) foreground notification, otherwise we'd incur in
|
||||||
// "Context.startForegroundService() did not then call Service.startForeground()". Then
|
// "Context.startForegroundService() did not then call Service.startForeground()". Then
|
||||||
// we stop the service again.
|
// we stop the service again.
|
||||||
Log.d(TAG, "onStartCommand() got a useless intent, closing the service");
|
Log.d(TAG, "onStartCommand() got a useless intent, closing the service")
|
||||||
NotificationUtil.startForegroundWithDummyNotification(this);
|
NotificationUtil.startForegroundWithDummyNotification(this)
|
||||||
return START_NOT_STICKY
|
return START_NOT_STICKY
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user