From 3e24207138c5ac58b1bffb127d38cea71ad7631d Mon Sep 17 00:00:00 2001 From: johannes karoff Date: Fri, 20 Jan 2023 01:41:36 +0100 Subject: [PATCH] format --- reactive/src/main/scala/colibri/reactive/Reactive.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactive/src/main/scala/colibri/reactive/Reactive.scala b/reactive/src/main/scala/colibri/reactive/Reactive.scala index 59390d89..1a43e477 100644 --- a/reactive/src/main/scala/colibri/reactive/Reactive.scala +++ b/reactive/src/main/scala/colibri/reactive/Reactive.scala @@ -154,7 +154,7 @@ object RxLater { def wrap[A](rx: Rx[A]): RxLater[A] = new RxLaterWrap(rx) @inline implicit final class RxLaterOps[A](private val self: RxLater[A]) extends AnyVal { - def toRxEvent: RxEvent[A] = RxEvent.observable(self.observable) + def toRxEvent: RxEvent[A] = RxEvent.observable(self.observable) def toRx: Rx[Option[A]] = Rx.observableSeed(self.observable.map[Option[A]](Some.apply))(None) def toRx(seed: => A): Rx[A] = Rx.observableSeed(self.observable)(seed) @@ -205,7 +205,7 @@ object Rx extends RxPlatform { def observableSync[A](observable: Observable[A]): Rx[A] = new RxSyncObservable(observable) @inline implicit final class RxLaterOps[A](private val self: Rx[A]) extends AnyVal { - def toRxEvent: RxEvent[A] = RxEvent.observable(self.observable) + def toRxEvent: RxEvent[A] = RxEvent.observable(self.observable) def toRxLater: RxLater[A] = RxLater.wrap(self) }