tuned --- following hints by IntelliJ;
authorwenzelm
Sun, 14 Mar 2021 22:55:52 +0100
changeset 73439 cb127ce2c092
parent 73438 69d449f0ca04
child 73440 3696bb4085ed
tuned --- following hints by IntelliJ;
src/Pure/General/http.scala
--- a/src/Pure/General/http.scala	Sun Mar 14 22:34:41 2021 +0100
+++ b/src/Pure/General/http.scala	Sun Mar 14 22:55:52 2021 +0100
@@ -53,7 +53,7 @@
 
   object Client
   {
-    val default_timeout = Time.seconds(180)
+    val default_timeout: Time = Time.seconds(180)
 
     def open_connection(url: URL,
       timeout: Time = default_timeout,
@@ -189,9 +189,9 @@
 
     def write_response(code: Int, response: Response): Unit =
     {
-      http_exchange.getResponseHeaders().set("Content-Type", response.content_type)
+      http_exchange.getResponseHeaders.set("Content-Type", response.content_type)
       http_exchange.sendResponseHeaders(code, response.bytes.length.toLong)
-      using(http_exchange.getResponseBody)(response.bytes.write_stream(_))
+      using(http_exchange.getResponseBody)(response.bytes.write_stream)
     }
   }
 
@@ -211,8 +211,7 @@
   object Handler
   {
     def apply(root: String, body: Exchange => Unit): Handler =
-      new Handler(root,
-        new HttpHandler { def handle(x: HttpExchange): Unit = body(new Exchange(x)) })
+      new Handler(root, (x: HttpExchange) => body(new Exchange(x)))
 
     def method(name: String, root: String, body: Arg => Option[Response]): Handler =
       apply(root, http =>
@@ -250,7 +249,7 @@
     def += (handler: Handler): Unit = http_server.createContext(handler.root, handler.handler)
     def -= (handler: Handler): Unit = http_server.removeContext(handler.root)
 
-    def start(): Unit = http_server.start
+    def start(): Unit = http_server.start()
     def stop(): Unit = http_server.stop(0)
 
     def address: InetSocketAddress = http_server.getAddress