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
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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
}