Skip to content

Commit 40caeb4

Browse files
authored
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)
1 parent 6e0b7be commit 40caeb4

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/src/main/java/org/schabi/newpipe/player/PlayerService.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -148,8 +148,8 @@ class PlayerService : MediaBrowserServiceCompat() {
148148
// a (dummy) foreground notification, otherwise we'd incur in
149149
// "Context.startForegroundService() did not then call Service.startForeground()". Then
150150
// we stop the service again.
151-
Log.d(TAG, "onStartCommand() got a useless intent, closing the service");
152-
NotificationUtil.startForegroundWithDummyNotification(this);
151+
Log.d(TAG, "onStartCommand() got a useless intent, closing the service")
152+
NotificationUtil.startForegroundWithDummyNotification(this)
153153
return START_NOT_STICKY
154154
}
155155

0 commit comments

Comments
 (0)