Skip to content

Commit ac51f06

Browse files
authored
Merge pull request #2107 from dotty-staging/disable/sbt-reporter
sbt-bridge: Fix #2092: Disable position information in the reporter
2 parents c321653 + 3c6502b commit ac51f06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sbt-bridge/src/xsbt/DelegatingReporter.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ final class DelegatingReporter(delegate: xsbti.Reporter) extends Reporter
2828
}
2929

3030
val position =
31-
if (cont.pos.exists) {
31+
if (false && cont.pos.exists) { // Disabled because it duplicates the information printed by Dotty
3232
val pos = cont.pos
3333
val src = pos.source
3434
new Position {

0 commit comments

Comments
 (0)