src/Pure/General/http.scala
changeset 65088 18f2d388fab4
parent 65087 11e332c4e39f
child 65828 02dd430d80c5
--- a/src/Pure/General/http.scala	Thu Mar 02 16:23:39 2017 +0100
+++ b/src/Pure/General/http.scala	Thu Mar 02 16:25:17 2017 +0100
@@ -140,12 +140,10 @@
       Isabelle_System.fonts(html = true).map(path => (path.base.implode -> Bytes.read(path))): _*)
 
   def fonts(root: String = "/fonts"): Handler =
-  {
     get(root, uri =>
       {
         val uri_name = uri.toString
         if (uri_name == root) Some(Response.text(cat_lines(html_fonts.map(_._1))))
         else html_fonts.collectFirst({ case (a, b) if uri_name == root + "/" + a => Response(b) })
       })
-  }
 }