src/Pure/GUI/gui_thread.scala
changeset 75393 87ebf5a50283
parent 73340 0ffcad1f6130
child 76709 fdbdc573a06b
--- a/src/Pure/GUI/gui_thread.scala	Fri Apr 01 11:51:42 2022 +0200
+++ b/src/Pure/GUI/gui_thread.scala	Fri Apr 01 17:06:10 2022 +0200
@@ -10,18 +10,15 @@
 import javax.swing.SwingUtilities
 
 
-object GUI_Thread
-{
+object GUI_Thread {
   /* context check */
 
-  def assert[A](body: => A): A =
-  {
+  def assert[A](body: => A): A = {
     Predef.assert(SwingUtilities.isEventDispatchThread)
     body
   }
 
-  def require[A](body: => A): A =
-  {
+  def require[A](body: => A): A = {
     Predef.require(SwingUtilities.isEventDispatchThread, "GUI thread expected")
     body
   }
@@ -29,8 +26,7 @@
 
   /* event dispatch queue */
 
-  def now[A](body: => A): A =
-  {
+  def now[A](body: => A): A = {
     if (SwingUtilities.isEventDispatchThread) body
     else {
       lazy val result = assert { Exn.capture(body) }
@@ -39,14 +35,12 @@
     }
   }
 
-  def later(body: => Unit): Unit =
-  {
+  def later(body: => Unit): Unit = {
     if (SwingUtilities.isEventDispatchThread) body
     else SwingUtilities.invokeLater(() => body)
   }
 
-  def future[A](body: => A): Future[A] =
-  {
+  def future[A](body: => A): Future[A] = {
     if (SwingUtilities.isEventDispatchThread) Future.value(body)
     else {
       val promise = Future.promise[A]