You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
(Context this comment)
There's a completableFuture.get() call floating around, and it doesn't really matter because it shouldn't take long and doesn't block any important thread, but it's still discomfiting. It would be nice to get rid of it, which probably requires changing the signature of DevToolsService.nowOrOnEvent from taking a Supplier<Boolean> to taking a Supplier<CompletableFuture<Boolean>> or something.
The text was updated successfully, but these errors were encountered:
(Context this comment)
There's a
completableFuture.get()
call floating around, and it doesn't really matter because it shouldn't take long and doesn't block any important thread, but it's still discomfiting. It would be nice to get rid of it, which probably requires changing the signature ofDevToolsService.nowOrOnEvent
from taking aSupplier<Boolean>
to taking aSupplier<CompletableFuture<Boolean>>
or something.The text was updated successfully, but these errors were encountered: