Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[eclipse-dev] Java compiler defaults changed

FYI - from this integration build on, you'll notice that the Java compiler
defaults will have changed to report 2 extra warnings:
- static members accessed in non-static way (e.g.   this.CONSTANT).
- unused imports (often resulting from codeassisting).

If you see these, you should consider fixing them so as to improve your
code quality.



Back to the top