Skip to content

Commit

Permalink
Formatting fluff
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rken committed Sep 24, 2019
1 parent 0bbf2a1 commit 949f622
Showing 1 changed file with 6 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,11 +188,12 @@ class BlueMusicService : Service(), VolumeObserver.Callback {

val latch = CountDownLatch(currentPriorityModules.size)
for (module in currentPriorityModules) {
Completable.fromRunnable {
Timber.v("Event module %s HANDLE-START", module)
module.handle(newDevice, event)
Timber.v("Event module %s HANDLE-STOP", module)
}
Completable
.fromRunnable {
Timber.v("Event module %s HANDLE-START", module)
module.handle(newDevice, event)
Timber.v("Event module %s HANDLE-STOP", module)
}
.subscribeOn(Schedulers.io())
.doOnSubscribe { disp ->
Timber.d("Running event module %s", module)
Expand Down

0 comments on commit 949f622

Please sign in to comment.