Is it intentional that error messages look like th...
# intellij
p
Is it intentional that error messages look like this?
Copy code
[REPEATED_MODIFIER] Repeated 'abstract'
As a human, I find this quite ugly. I'd prefer:
Copy code
Duplicate modifier 'abstract'
a
Yes. To hide the diagnostic name, go to "Main menu | Help | Edit custom properties" and remove the line:
Copy code
idea.is.internal=true
or set it to
false
.
p
Ah, that's the reason. Thanks. I want internal=true for the PSI viewer.
🆒 2