summaryrefslogtreecommitdiff
path: root/src/library/scala/Predef.scala
diff options
context:
space:
mode:
authorSeth Tisue <seth@tisue.net>2015-07-16 08:25:54 -0400
committerSeth Tisue <seth@tisue.net>2015-07-21 15:05:35 -0400
commit1408162d1b7c3da84bfcb7cf2a0d2884c931bea8 (patch)
tree935ba337a4c7fb0020bc3d40de18fcdc8b9d744f /src/library/scala/Predef.scala
parent100a234882a86a249ebe586b4e75fede58c098c3 (diff)
downloadscala-1408162d1b7c3da84bfcb7cf2a0d2884c931bea8.tar.gz
scala-1408162d1b7c3da84bfcb7cf2a0d2884c931bea8.tar.bz2
scala-1408162d1b7c3da84bfcb7cf2a0d2884c931bea8.zip
remove legacy bincompat stuff in Predef.scala, Stream.scala
it was only there to preserve binary compatibility within the 2.11.x series includes updated partest, since the old partest ran afoul of the Stream change
Diffstat (limited to 'src/library/scala/Predef.scala')
-rw-r--r--src/library/scala/Predef.scala7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/library/scala/Predef.scala b/src/library/scala/Predef.scala
index 281e056330..fa58015a84 100644
--- a/src/library/scala/Predef.scala
+++ b/src/library/scala/Predef.scala
@@ -269,13 +269,6 @@ object Predef extends LowPriorityImplicits with DeprecatedPredef {
@inline def formatted(fmtstr: String): String = fmtstr format self
}
- // TODO: remove, only needed for binary compatibility of 2.11.0-RC1 with 2.11.0-M8
- // note that `private[scala]` becomes `public` in bytecode
- private[scala] final class StringAdd[A](private val self: A) extends AnyVal {
- def +(other: String): String = String.valueOf(self) + other
- }
- private[scala] def StringAdd(x: Any): Any = new StringAdd(x)
-
// SI-8229 retaining the pre 2.11 name for source compatibility in shadowing this implicit
implicit final class any2stringadd[A](private val self: A) extends AnyVal {
def +(other: String): String = String.valueOf(self) + other