src/share/classes/com/sun/tools/javac/code/Lint.java

changeset 505
87eb6edd4f21
parent 377
d9febdd5ae21
child 554
9d9f26857129
equal deleted inserted replaced
504:6eca0895a644 505:87eb6edd4f21
196 RAW("rawtypes"), 196 RAW("rawtypes"),
197 197
198 /** 198 /**
199 * Warn about Sun proprietary API that may be removed in a future release. 199 * Warn about Sun proprietary API that may be removed in a future release.
200 */ 200 */
201 SUNAPI("sunapi", true); 201 SUNAPI("sunapi", true),
202
203 /**
204 * Warn about issues relating to use of statics
205 */
206 STATIC("static");
202 207
203 LintCategory(String option) { 208 LintCategory(String option) {
204 this(option, false); 209 this(option, false);
205 } 210 }
206 211

mercurial