tuned whitespace;
authorwenzelm
Mon, 13 Mar 2023 17:30:43 +0100
changeset 77631 89fffc5f5728
parent 77630 86ef80d13544
child 77632 f7208db921c2
tuned whitespace;
src/Pure/Tools/build_process.scala
--- a/src/Pure/Tools/build_process.scala	Mon Mar 13 17:22:43 2023 +0100
+++ b/src/Pure/Tools/build_process.scala	Mon Mar 13 17:30:43 2023 +0100
@@ -143,7 +143,23 @@
 
   type Progress_Messages = SortedMap[Long, Progress.Message]
 
-  case class Task(name: String, deps: List[String], info: JSON.Object.T = JSON.Object.empty) {
+  case class Worker(
+    worker_uuid: String,
+    build_uuid: String,
+    hostname: String,
+    java_pid: Long,
+    java_start: Date,
+    start: Date,
+    stamp: Date,
+    stop: Option[Date],
+    serial: Long
+  )
+
+  case class Task(
+    name: String,
+    deps: List[String],
+    info: JSON.Object.T = JSON.Object.empty
+  ) {
     def is_ready: Boolean = deps.isEmpty
     def resolve(dep: String): Task =
       if (deps.contains(dep)) copy(deps = deps.filterNot(_ == dep)) else this
@@ -158,17 +174,6 @@
     def no_build: Job = copy(build = None)
   }
 
-  case class Worker(
-    worker_uuid: String,
-    build_uuid: String,
-    hostname: String,
-    java_pid: Long,
-    java_start: Date,
-    start: Date,
-    stamp: Date,
-    stop: Option[Date],
-    serial: Long)
-
   case class Result(
     process_result: Process_Result,
     output_shasum: SHA1.Shasum,