summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpaltherr <paltherr@epfl.ch>2004-01-19 15:06:21 +0000
committerpaltherr <paltherr@epfl.ch>2004-01-19 15:06:21 +0000
commit4baa04cfb6e0180d8fa97a3b48892b007bebdc0c (patch)
treec9017f1229979153f946025408fc547e616c1134
parentd1624f0e5868c8e166c995b7f9b48e423d41735b (diff)
downloadscala-4baa04cfb6e0180d8fa97a3b48892b007bebdc0c.tar.gz
scala-4baa04cfb6e0180d8fa97a3b48892b007bebdc0c.tar.bz2
scala-4baa04cfb6e0180d8fa97a3b48892b007bebdc0c.zip
- Changed scala.Unit to Unit
-rw-r--r--sources/scala/Predef.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/sources/scala/Predef.scala b/sources/scala/Predef.scala
index 4c7c22a16d..093330c3c5 100644
--- a/sources/scala/Predef.scala
+++ b/sources/scala/Predef.scala
@@ -44,7 +44,7 @@ object Predef {
def error(message: String): All = throw new Error(message);
- def exit: scala.Unit = java.lang.System.exit(0);
+ def exit: Unit = java.lang.System.exit(0);
def assert(assertion: Boolean): Unit = {
if (!assertion)