summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2006-11-02 09:23:46 +0000
committermihaylov <mihaylov@epfl.ch>2006-11-02 09:23:46 +0000
commit6aa668e0f46a5bc19016350d0f90bde3403c854d (patch)
tree66668af5ba0109d076fd21d7e1308a1c3f429f0d /src/library
parentb6f68a6bcce0d38b3d57d1a3a177224d6f9c52a7 (diff)
downloadscala-6aa668e0f46a5bc19016350d0f90bde3403c854d.tar.gz
scala-6aa668e0f46a5bc19016350d0f90bde3403c854d.tar.bz2
scala-6aa668e0f46a5bc19016350d0f90bde3403c854d.zip
Removed semicolons (copy-and-paste leftovers) f...
Removed semicolons (copy-and-paste leftovers) from Predef.scala
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/Predef.scala12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/library/scala/Predef.scala b/src/library/scala/Predef.scala
index 532b1255ea..b1ee6d05de 100644
--- a/src/library/scala/Predef.scala
+++ b/src/library/scala/Predef.scala
@@ -36,15 +36,15 @@ object Predef {
type unit = scala.Unit
type String = java.lang.String
- type Class = java.lang.Class;
+ type Class = java.lang.Class
type Throwable = java.lang.Throwable
type Exception = java.lang.Exception
type Error = java.lang.Error
- type RuntimeException = java.lang.RuntimeException;
+ type RuntimeException = java.lang.RuntimeException
type NullPointerException = java.lang.NullPointerException
- type ClassCastException = java.lang.ClassCastException;
- type IndexOutOfBoundsException = java.lang.IndexOutOfBoundsException;
+ type ClassCastException = java.lang.ClassCastException
+ type IndexOutOfBoundsException = java.lang.IndexOutOfBoundsException
type ArrayIndexOutOfBoundsException = java.lang.ArrayIndexOutOfBoundsException
type UnsupportedOperationException = java.lang.UnsupportedOperationException
type IllegalArgumentException = java.lang.IllegalArgumentException
@@ -312,8 +312,6 @@ object Predef {
implicit def double2Double(x: double) = new java.lang.Double(x)
implicit def boolean2Boolean(x: boolean) = new java.lang.Boolean(x)
- //
- def currentThread = java.lang.Thread.currentThread();
-
+ def currentThread = java.lang.Thread.currentThread()
}