diff -r 6eca0895a644 -r 87eb6edd4f21 src/share/classes/com/sun/tools/javac/code/Lint.java --- a/src/share/classes/com/sun/tools/javac/code/Lint.java Tue Feb 23 18:43:02 2010 -0800 +++ b/src/share/classes/com/sun/tools/javac/code/Lint.java Thu Feb 25 09:42:35 2010 -0800 @@ -198,7 +198,12 @@ /** * Warn about Sun proprietary API that may be removed in a future release. */ - SUNAPI("sunapi", true); + SUNAPI("sunapi", true), + + /** + * Warn about issues relating to use of statics + */ + STATIC("static"); LintCategory(String option) { this(option, false);