mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2025-12-13 11:48:06 +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
|
||||
// "Context.startForegroundService() did not then call Service.startForeground()". Then
|
||||
// we stop the service again.
|
||||
Log.d(TAG, "onStartCommand() got a useless intent, closing the service");
|
||||
NotificationUtil.startForegroundWithDummyNotification(this);
|
||||
Log.d(TAG, "onStartCommand() got a useless intent, closing the service")
|
||||
NotificationUtil.startForegroundWithDummyNotification(this)
|
||||
return START_NOT_STICKY
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user