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

changeset 609
13354e1abba7
parent 582
366a7b9b5627
child 612
d1bd93028447
equal deleted inserted replaced
608:472e74211e11 609:13354e1abba7
206 STATIC("static"), 206 STATIC("static"),
207 207
208 /** 208 /**
209 * Warn about potentially unsafe vararg methods 209 * Warn about potentially unsafe vararg methods
210 */ 210 */
211 VARARGS("varargs"); 211 VARARGS("varargs"),
212
213 /**
214 * Warn about arm resources
215 */
216 ARM("arm");
212 217
213 LintCategory(String option) { 218 LintCategory(String option) {
214 this(option, false); 219 this(option, false);
215 } 220 }
216 221

mercurial