From 835fab52247cae811c2ef547f79dc121acc21e66 Mon Sep 17 00:00:00 2001 From: mihaylov Date: Tue, 12 Jun 2007 08:43:12 +0000 Subject: Moved Proxy as the last supertype of RichString... Moved Proxy as the last supertype of RichString so it can inherit the forwarding of toString --- src/library/scala/runtime/RichString.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/library/scala/runtime/RichString.scala b/src/library/scala/runtime/RichString.scala index 83751dab5a..241d96f303 100644 --- a/src/library/scala/runtime/RichString.scala +++ b/src/library/scala/runtime/RichString.scala @@ -14,7 +14,7 @@ package scala.runtime import Predef._ -final class RichString(val self: String) extends Proxy with Seq[Char] with Ordered[String] { +final class RichString(val self: String) extends Seq[Char] with Ordered[String] with Proxy { // Ordered[String] def compare(other: String) = self compareTo other -- cgit v1.2.3