summaryrefslogtreecommitdiff
path: root/test/files/run/t8690.scala
Commit message (Collapse)AuthorAgeFilesLines
* SI-8690 BufferedSource.mkString mistakenly skipped the first char.Antoine Gourlay2014-06-291-0/+12
mkString is overriden in BufferedSource for performance, but the implementation always used the wrong reader. This seems to be a typo (`allReader` is declared 5 lines earlier but never used, `charReader` is used in its place).