Java: remove spurious error highlighting (IDEA-340885)

GitOrigin-RevId: 955d86aca0ceb262cee8f3ae5744856108eeb412
This commit is contained in:
Bas Leijdekkers
2023-12-13 18:17:35 +01:00
committed by intellij-monorepo-bot
parent 9b4e551e2d
commit 88bd39ef0d
9 changed files with 29 additions and 22 deletions

View File

@@ -38,7 +38,7 @@ enum Operation {
<error descr="'valueOf(String)' is already defined in 'Operation'">void valueOf(String s)</error> {}
}
<error descr="There is no default constructor available in 'Operation'">class exte extends <error descr="Cannot inherit from enum 'Operation'">Operation</error></error> {
class exte extends <error descr="Cannot inherit from enum 'Operation'">Operation</error> {
}
class use {