summaryrefslogtreecommitdiff
path: root/src/compiler/scala/tools/util/SocketConnection.scala
diff options
context:
space:
mode:
Diffstat (limited to 'src/compiler/scala/tools/util/SocketConnection.scala')
-rw-r--r--src/compiler/scala/tools/util/SocketConnection.scala8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/compiler/scala/tools/util/SocketConnection.scala b/src/compiler/scala/tools/util/SocketConnection.scala
index c1a9fb2a20..7936cfea72 100644
--- a/src/compiler/scala/tools/util/SocketConnection.scala
+++ b/src/compiler/scala/tools/util/SocketConnection.scala
@@ -1,12 +1,12 @@
/* __ *\
** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2006, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
+** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
-// $id: $
+// $Id$
package scala.tools.util
@@ -45,7 +45,7 @@ class SocketConnection(hostname: String, port: Int) {
}
}
- def close() = {
+ def close() {
in.close()
out.close()
socket.close()