summaryrefslogtreecommitdiff
path: root/sources
diff options
context:
space:
mode:
authorcremet <cremet@epfl.ch>2003-10-31 10:40:00 +0000
committercremet <cremet@epfl.ch>2003-10-31 10:40:00 +0000
commit8ff5e6c0e540e1b186ffe7925490f2c3f2a34e74 (patch)
tree4775814e16941358d3da47b95bc532b385e56e39 /sources
parent4171a0e4a45cf67c66d4064186c2e57cc548e655 (diff)
downloadscala-8ff5e6c0e540e1b186ffe7925490f2c3f2a34e74.tar.gz
scala-8ff5e6c0e540e1b186ffe7925490f2c3f2a34e74.tar.bz2
scala-8ff5e6c0e540e1b186ffe7925490f2c3f2a34e74.zip
*** empty log message ***
Diffstat (limited to 'sources')
-rw-r--r--sources/scala/concurrent/pilib.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/sources/scala/concurrent/pilib.scala b/sources/scala/concurrent/pilib.scala
index 4cf39c990a..8995b0fbfb 100644
--- a/sources/scala/concurrent/pilib.scala
+++ b/sources/scala/concurrent/pilib.scala
@@ -16,8 +16,8 @@ object pilib with Monitor {
def |(def p: unit): Spawn;
def > : unit;
}
- val spawn = new Spawn {
- // object spawn extends Spawn { BUG !
+ //val spawn = new Spawn {
+ object spawn extends Spawn { // BUG !
def <(def p: unit): Spawn = { ops.spawn(p); this }
def |(def p: unit): Spawn = { ops.spawn(p); this }
def > : unit = ()