summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/immutable/TreeSet.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2007-02-20 16:37:44 +0000
committermichelou <michelou@epfl.ch>2007-02-20 16:37:44 +0000
commit4362112a7e58271a50f3218248d8ef47af5cd408 (patch)
tree5e33db8c783b2f02361fcf4eb28a9b2cf273cf6d /src/library/scala/collection/immutable/TreeSet.scala
parentc71d5e24e64f88ee6f502326674b6b55025fcded (diff)
downloadscala-4362112a7e58271a50f3218248d8ef47af5cd408.tar.gz
scala-4362112a7e58271a50f3218248d8ef47af5cd408.tar.bz2
scala-4362112a7e58271a50f3218248d8ef47af5cd408.zip
updated annotations in Scala library
Diffstat (limited to 'src/library/scala/collection/immutable/TreeSet.scala')
-rw-r--r--src/library/scala/collection/immutable/TreeSet.scala9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/library/scala/collection/immutable/TreeSet.scala b/src/library/scala/collection/immutable/TreeSet.scala
index 1226923d66..33c165d3db 100644
--- a/src/library/scala/collection/immutable/TreeSet.scala
+++ b/src/library/scala/collection/immutable/TreeSet.scala
@@ -1,7 +1,7 @@
/* __ *\
** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2003-2006, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
+** / __/ __// _ | / / / _ | (c) 2003-2007, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
@@ -16,7 +16,8 @@ object TreeSet {
/** The empty set of this type
* @deprecated use <code>empty</code> instead
*/
- [deprecated] def Empty[A <% Ordered[A]] = empty[A]
+ @deprecated
+ def Empty[A <% Ordered[A]] = empty[A]
/** The empty set of this type
*/
@@ -33,7 +34,7 @@ object TreeSet {
* @version 2.0, 02/01/2007
*/
-[serializable]
+@serializable
class TreeSet[A <% Ordered[A]](val size: int, t: RedBlack[A]#Tree[Unit])
extends RedBlack[A] with Set[A] {