From 008c2928b6757eaeeac543ff346e4838fc4f46fe Mon Sep 17 00:00:00 2001 From: Mark Harrah Date: Wed, 13 Mar 2013 12:40:03 -0400 Subject: [PATCH] note that mixing RangePositions into Global isn't necessary in 2.11 --- compile/interface/src/main/scala/xsbt/CompilerInterface.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile/interface/src/main/scala/xsbt/CompilerInterface.scala b/compile/interface/src/main/scala/xsbt/CompilerInterface.scala index 9efed98cb..c4a81c9ec 100644 --- a/compile/interface/src/main/scala/xsbt/CompilerInterface.scala +++ b/compile/interface/src/main/scala/xsbt/CompilerInterface.scala @@ -144,7 +144,7 @@ private final class CachedCompiler0(args: Array[String], output: Output, initial val compiler: Compiler = { if (command.settings.Yrangepos.value) - new Compiler() with RangePositions + new Compiler() with RangePositions // unnecessary in 2.11 else new Compiler() }