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.
1 parent ec5c0d4 commit 2eeed25Copy full SHA for 2eeed25
expression-compiler/src/main/scala-2/scala/tools/nsc/ExpressionCompilerBridge.scala
@@ -6,7 +6,6 @@ import java.{util => ju}
6
import scala.jdk.CollectionConverters._
7
import scala.tools.nsc.reporters.StoreReporter
8
import scala.util.control.NonFatal
9
-import scala.annotation
10
11
final class ExpressionCompilerBridge {
12
def run(
@@ -32,7 +31,7 @@ final class ExpressionCompilerBridge {
32
31
) ++ options :+ sourceFile.toString
33
34
val command = new CompilerCommand(args, errorConsumer.accept(_))
35
- val reporter = new StoreReporter(): @annotation.nowarn()
+ val reporter = new StoreReporter()
36
val global = new ExpressionGlobal(
37
command.settings,
38
reporter,
0 commit comments