Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Warnings in IntelliJ IDEA v12

The answer given for How to get Intellij Idea to display compilation warnings? no longer applies from version 12. There is no longer a messages panel, as far as I can see.

How can I see a full list of all warnings in the project in version 12?

like image 333
Synesso Avatar asked Oct 06 '22 02:10

Synesso


1 Answers

This option and the Messages panel is on the same place as before in IDEA 12.0.3:

panel

If you don't see it, it means that your project has no errors. Make any error and the panel will appear. Verify that Hide warnings is not enabled. Fix the error, Make the project again, you should see only warnings:

warnings

Note that Make is incremental, if there were no changes, it will not compile and report any old warnings, so you may need to Rebuild to see all of them.

like image 194
CrazyCoder Avatar answered Oct 10 '22 03:10

CrazyCoder