src/Pure/Admin/build_jcef.scala
changeset 75393 87ebf5a50283
parent 75102 678fae02f9b3
child 75394 42267c650205
--- a/src/Pure/Admin/build_jcef.scala	Fri Apr 01 11:51:42 2022 +0200
+++ b/src/Pure/Admin/build_jcef.scala	Fri Apr 01 17:06:10 2022 +0200
@@ -11,8 +11,7 @@
 package isabelle
 
 
-object Build_JCEF
-{
+object Build_JCEF {
   /* platform information */
 
   sealed case class JCEF_Platform(
@@ -48,8 +47,8 @@
     base_url: String = default_url,
     version: String = default_version,
     target_dir: Path = Path.current,
-    progress: Progress = new Progress): Unit =
-  {
+    progress: Progress = new Progress
+  ): Unit = {
     /* component name */
 
     val component = "jcef-" + version
@@ -61,8 +60,7 @@
 
     val platform_settings: List[String] =
       for (platform <- platforms) yield {
-        Isabelle_System.with_tmp_file("archive", ext = "tar.gz")(archive_file =>
-        {
+        Isabelle_System.with_tmp_file("archive", ext = "tar.gz")(archive_file => {
           val url = base_url + "/" + version + "/" + platform.archive
           Isabelle_System.download_file(url, archive_file, progress = progress)
 
@@ -144,8 +142,7 @@
 
   val isabelle_tool =
     Isabelle_Tool("build_jcef", "build component for Java Chromium Embedded Framework",
-      Scala_Project.here, args =>
-    {
+      Scala_Project.here, args => {
       var target_dir = Path.current
       var base_url = default_url
       var version = default_version