Home > Software design >  IntelliJ: Strange gaps before Java annotations
IntelliJ: Strange gaps before Java annotations

Time:04-16

I updated to IntelliJ 2022.1 and it shows gaps before every java annotation (between line 78 and 79) :

enter image description here

It did not do this in the previous version I used (2021.3) and I want to deactivate it, but I can't find anything in the settings. So far I searched for: gap, height, lines, ...

Does anyone know how to deactivate this?

CodePudding user response:

Disable the inlay hints in settings -> editor -> inlay hints

CodePudding user response:

It is a known bug https://youtrack.jetbrains.com/issue/IDEA-291945 .

As a workaround, you can add editor.codeVision.new=false in Help | Edit Custom Properties and restart the IDE.

  • Related