5

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?

Community
  • 1
  • 1
Synesso
  • 37,610
  • 35
  • 136
  • 207

1 Answers1

4

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.

CrazyCoder
  • 389,263
  • 172
  • 990
  • 904