summaryrefslogtreecommitdiff
path: root/src/library
diff options
context:
space:
mode:
authormihaylov <mihaylov@epfl.ch>2007-02-18 15:05:22 +0000
committermihaylov <mihaylov@epfl.ch>2007-02-18 15:05:22 +0000
commit2a27ffb80e27685e36c170b096d71efec0c45357 (patch)
tree9f48522db79e81f9be02844ce1c5fc553d366ab8 /src/library
parent1614f42a20c5a286bac169ef354bf057f9104a3b (diff)
downloadscala-2a27ffb80e27685e36c170b096d71efec0c45357.tar.gz
scala-2a27ffb80e27685e36c170b096d71efec0c45357.tar.bz2
scala-2a27ffb80e27685e36c170b096d71efec0c45357.zip
Reverted to the old attribute syntax for mutabl...
Reverted to the old attribute syntax for mutable.Queue to satisfy the STARR compiler
Diffstat (limited to 'src/library')
-rw-r--r--src/library/scala/collection/mutable/Queue.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/library/scala/collection/mutable/Queue.scala b/src/library/scala/collection/mutable/Queue.scala
index 7fb6878a0d..ae4797e207 100644
--- a/src/library/scala/collection/mutable/Queue.scala
+++ b/src/library/scala/collection/mutable/Queue.scala
@@ -20,7 +20,7 @@ package scala.collection.mutable
* @author Matthias Zenger
* @version 1.1, 03/05/2004
*/
-@serializable @cloneable
+[serializable, cloneable]
class Queue[A] extends MutableList[A] {
/** Checks if the queue is empty.