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

changeset 580
46cf751559ae
parent 554
9d9f26857129
child 581
f2fdd52e4e87
equal deleted inserted replaced
579:d33b91f360fc 580:46cf751559ae
201 SUNAPI("sunapi", true), 201 SUNAPI("sunapi", true),
202 202
203 /** 203 /**
204 * Warn about issues relating to use of statics 204 * Warn about issues relating to use of statics
205 */ 205 */
206 STATIC("static"); 206 STATIC("static"),
207
208 /**
209 * Warn about potentially unsafe vararg methods
210 */
211 VARARGS("varargs");
207 212
208 LintCategory(String option) { 213 LintCategory(String option) {
209 this(option, false); 214 this(option, false);
210 } 215 }
211 216

mercurial