summaryrefslogtreecommitdiff
path: root/src/library/scala/Proxy.scala
diff options
context:
space:
mode:
authormichelou <michelou@epfl.ch>2008-01-31 14:30:29 +0000
committermichelou <michelou@epfl.ch>2008-01-31 14:30:29 +0000
commitfcc91d2f8d670ce9a8a57efe729458643d51c433 (patch)
tree8628790db6619d79ef35cb4de546fa22f583ab54 /src/library/scala/Proxy.scala
parent3ab4a7b749b82db2bca0525d9ef3b63eb8548712 (diff)
downloadscala-fcc91d2f8d670ce9a8a57efe729458643d51c433.tar.gz
scala-fcc91d2f8d670ce9a8a57efe729458643d51c433.tar.bz2
scala-fcc91d2f8d670ce9a8a57efe729458643d51c433.zip
fixed #406
Diffstat (limited to 'src/library/scala/Proxy.scala')
-rw-r--r--src/library/scala/Proxy.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/library/scala/Proxy.scala b/src/library/scala/Proxy.scala
index 96931da5cb..a39b06e15b 100644
--- a/src/library/scala/Proxy.scala
+++ b/src/library/scala/Proxy.scala
@@ -1,6 +1,6 @@
/* __ *\
** ________ ___ / / ___ Scala API **
-** / __/ __// _ | / / / _ | (c) 2002-2007, LAMP/EPFL **
+** / __/ __// _ | / / / _ | (c) 2002-2008, LAMP/EPFL **
** __\ \/ /__/ __ |/ /__/ __ | http://www.scala-lang.org/ **
** /____/\___/_/ |_/____/_/ | | **
** |/ **
@@ -27,7 +27,7 @@ trait Proxy {
override def hashCode: Int = self.hashCode
override def equals(that: Any): Boolean = that match {
case that: Proxy => self equals that.self
- case that => self equals that
+ case that => false
}
override def toString: String = self.toString
}