6

I have Java code generated from ANTLR4. Scala is using the Java code by extending some of the methods. The issue is that IntelliJ's scala plugin does not seem to know the relationship between Java base class and Scala subclass to show a false positive error message; it reports "Method ... overrides nothing" when Scala overrides Java method.

How to control the error level in IntelliJ to suppress this error message?

enter image description here

Suma
  • 33,181
  • 16
  • 123
  • 191
prosseek
  • 182,215
  • 215
  • 566
  • 871
  • Possible duplicate of [How do I disable IntelliJ IDEA's type inspection?](http://stackoverflow.com/questions/8150090/how-do-i-disable-intellij-ideas-type-inspection) – Suma Nov 22 '16 at 11:20

1 Answers1

8

Most of the false-negatives produced by Scala plugin are caused by type-aware highlighting:

enter image description here

Now you pressing on this icon you can disable it everywhere and your error will be gone, but that means that you'll lose your type validation everywhere.

There is less radical approach. According to IntelliJ documentation, enclosing your code in /*_*/ ... /*_*/, allows to disable type-aware highlighting locally.

For example:

class Test {
}

class Test1 {
  /*_*/
  override def foo = 1
  /*_*/
}

In this case, override def foo will not be highlighted.

Aivean
  • 10,692
  • 25
  • 39