summaryrefslogtreecommitdiff
path: root/src/library/scala/collection/mutable/SetProxy.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/mutable/SetProxy.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/mutable/SetProxy.scala')
-rw-r--r--src/library/scala/collection/mutable/SetProxy.scala7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/library/scala/collection/mutable/SetProxy.scala b/src/library/scala/collection/mutable/SetProxy.scala
index 0cba74da40..69c07a10b1 100644
--- a/src/library/scala/collection/mutable/SetProxy.scala
+++ b/src/library/scala/collection/mutable/SetProxy.scala
@@ -1,7 +1,7 @@
/* __ *\
** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2003-2006, LAMP/EPFL **
-** __\ \/ /__/ __ |/ /__/ __ | **
+** / __/ __// _ | / / / _ | (c) 2003-2007, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | http://scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
\* */
@@ -48,7 +48,8 @@ trait SetProxy[A] extends Set[A] with collection.SetProxy[A] {
override def retain(p: A => Boolean): Unit = self.retain(p)
- [deprecated] override def filter(p: A => Boolean) = self.filter(p)
+ @deprecated
+ override def filter(p: A => Boolean) = self.filter(p)
override def <<(cmd: Message[A]): Unit = self << cmd