0

I have a very similar problem to these threads: Eclipse Problems View not showing Errors anymore and Eclipse Problems View doesn't show Errors

However, my problem is that warnings are not showing up any longer, instead of errors. Errors show up just fine. They aren't showing up in files either. I tried the solutions in that thread anyways, but no luck.

I even tried going to Configure Contents and added a configuration to show everything with severity of "Warning". I tried moving the project to another computer, and warnings showed up just fine. I tried re-installing Eclipse, and the same issue appeared. Any other ideas?

Community
  • 1
  • 1
JuniorIncanter
  • 1,569
  • 2
  • 16
  • 27

1 Answers1

3

This could be a problem with the Java compiler settings where you describe whether each kind compile issue (e.g. local value not read, etc.) is to be treated as an error, warning or simple ignored.

Go to Preferences -> Java -> Compiler -> Errors/Warnings and confirm that the warnings you expect to be flagged are in fact configured to be warnings.

Chris Gerken
  • 16,221
  • 6
  • 44
  • 59
  • That was it. Somehow those settings got changed, and I'm not sure how, considering I wasn't aware they existed until now. Thanks! – JuniorIncanter May 04 '14 at 20:01