From 3c6502b39d7227a1da6d7700c00968c323e30f98 Mon Sep 17 00:00:00 2001 From: Guillaume Martres Date: Wed, 15 Mar 2017 23:21:38 +0100 Subject: sbt-bridge: Fix #2092: Disable position information in the reporter This is temporary until someone figures out how to get sbt to not print duplicated information when this is turned on. This might require changes to sbt itself. --- sbt-bridge/src/xsbt/DelegatingReporter.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sbt-bridge') diff --git a/sbt-bridge/src/xsbt/DelegatingReporter.scala b/sbt-bridge/src/xsbt/DelegatingReporter.scala index e637ddcf3..8302c1f14 100644 --- a/sbt-bridge/src/xsbt/DelegatingReporter.scala +++ b/sbt-bridge/src/xsbt/DelegatingReporter.scala @@ -28,7 +28,7 @@ final class DelegatingReporter(delegate: xsbti.Reporter) extends Reporter } val position = - if (cont.pos.exists) { + if (false && cont.pos.exists) { // Disabled because it duplicates the information printed by Dotty val pos = cont.pos val src = pos.source new Position { -- cgit v1.2.3