1
0
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:
Tobi
2025-11-29 22:24:20 +01:00
committed by GitHub
parent 6e0b7be15c
commit 40caeb465d

View File

@@ -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
}