Skip to content

Commit 703cceb

Browse files
committed
Remove the TODO on WrappedString
1 parent 6540914 commit 703cceb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/src/scala/collection/immutable/WrappedString.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ final class WrappedString(private val self: String) extends AbstractSeq[Char] wi
103103
override def appendedAll[B >: Char](suffix: IterableOnce[B]^): IndexedSeq[B] =
104104
suffix match {
105105
case s: WrappedString => new WrappedString(self concat s.self)
106-
case _ => Predef.??? // TODO super.appendedAll(suffix)
106+
case _ => super.appendedAll(suffix)
107107
}
108108

109109
override def sameElements[B >: Char](o: IterableOnce[B]^) = o match {

0 commit comments

Comments
 (0)