summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorLex Spoon <lex@lexspoon.org>2007-04-19 01:43:54 +0000
committerLex Spoon <lex@lexspoon.org>2007-04-19 01:43:54 +0000
commitb92ecfcbd079dfa59e9d5541c6aebfa90cc3f9ec (patch)
treea755546c65b4a7380020bf15be67ccf60568f8cc /src
parent5298d7cde068910c5ac1495704f6217cb024de73 (diff)
downloadscala-b92ecfcbd079dfa59e9d5541c6aebfa90cc3f9ec.tar.gz
scala-b92ecfcbd079dfa59e9d5541c6aebfa90cc3f9ec.tar.bz2
scala-b92ecfcbd079dfa59e9d5541c6aebfa90cc3f9ec.zip
changed "def close" to "def close()"
Diffstat (limited to 'src')
-rw-r--r--src/compiler/scala/tools/nsc/Interpreter.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compiler/scala/tools/nsc/Interpreter.scala b/src/compiler/scala/tools/nsc/Interpreter.scala
index 545beaa04c..80600fb7d3 100644
--- a/src/compiler/scala/tools/nsc/Interpreter.scala
+++ b/src/compiler/scala/tools/nsc/Interpreter.scala
@@ -496,7 +496,7 @@ class Interpreter(val settings: Settings, reporter: Reporter, out: PrintWriter)
* each command is executed because of Java's demand loading.
* </p>
*/
- def close: Unit =
+ def close(): Unit =
Interpreter.deleteRecursively(classfilePath)