How to get Intellij Idea to display compilation warnings?

I work with Intellij Idea 10 and Java 6 JDK Update 7. When I run the Build --> Rebuild Project command, and compilation (javac) generates warnings, Idea does not show that these warnings are in Messages View. I just see the "Information: XX warnings" node, but have no way to expand it to see the actual warnings. Or I just see the message “Successful compilation with XX warnings” in the status bar. For errors, Idea automatically displays error information (error message, file name, line number, etc.). How can I make it work like warnings?

(For the record, I already tried using additional command line options such as -Xlint , but that doesn't matter.)

+42
intellij-idea compiler-warnings javac
Jan 20 2018-11-11T00:
source share
1 answer

Make sure the Hide warnings option is disabled in the Messages pane on the left:

Hide warnings

+35
Jan 20 2018-11-11T00:
source share



All Articles