tuned whitespace;
authorwenzelm
Sat, 17 Feb 2024 15:33:01 +0100
changeset 79646 7b22356fd55c
parent 79645 7a1153c95bf9
child 79647 b7187d4cdf68
tuned whitespace;
src/Pure/Build/build.scala
--- a/src/Pure/Build/build.scala	Sat Feb 17 15:27:32 2024 +0100
+++ b/src/Pure/Build/build.scala	Sat Feb 17 15:33:01 2024 +0100
@@ -193,8 +193,9 @@
 
         val build_deps = {
           val deps0 =
-            Sessions.deps(full_sessions.selection(selection), progress = progress, inlined_files = true,
-              list_files = list_files, check_keywords = check_keywords).check_errors
+            Sessions.deps(full_sessions.selection(selection), progress = progress,
+              inlined_files = true, list_files = list_files, check_keywords = check_keywords
+            ).check_errors
 
           if (soft_build && !fresh_build) {
             val outdated =
@@ -205,7 +206,9 @@
                       case Some(build) if build.ok =>
                         val session_options = deps0.sessions_structure(name).options
                         val session_sources = deps0.sources_shasum(name)
-                        if (Sessions.eq_sources(session_options, build.sources, session_sources)) None
+                        if (Sessions.eq_sources(session_options, build.sources, session_sources)) {
+                          None
+                        }
                         else Some(name)
                       case _ => Some(name)
                     }
@@ -230,7 +233,8 @@
           Mercurial.check_files(source_files)._2 match {
             case Nil =>
             case unknown_files =>
-              progress.echo_warning("Unknown files (not part of the underlying Mercurial repository):" +
+              progress.echo_warning(
+                "Unknown files (not part of the underlying Mercurial repository):" +
                 unknown_files.map(File.standard_path).sorted.mkString("\n  ", "\n  ", ""))
           }
         }