We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3b9ef28 + f300b28 commit ffd8c05Copy full SHA for ffd8c05
scalac-scoverage-plugin/src/main/scala/scoverage/report/CodeGrid.scala
@@ -9,7 +9,7 @@ class CodeGrid(mfile: MeasuredFile) {
9
10
case class Cell(char: Char, var status: StatementStatus)
11
12
- private val lineBreak = System.getProperty("line.separator").toCharArray
+ private val lineBreak = System.getProperty("line.separator")
13
14
// note: we must reinclude the line sep to keep source positions correct.
15
private val lines = source(mfile).split(lineBreak).map(line => (line.toCharArray ++ lineBreak).map(Cell(_, NoData)))
0 commit comments