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

changeset 743
6a99b741a1b0
parent 612
d1bd93028447
child 757
c44234f680da
equal deleted inserted replaced
742:fdc67f5170e9 743:6a99b741a1b0
210 * Warn about potentially unsafe vararg methods 210 * Warn about potentially unsafe vararg methods
211 */ 211 */
212 VARARGS("varargs"), 212 VARARGS("varargs"),
213 213
214 /** 214 /**
215 * Warn about arm resources 215 * Warn about issues relating to use of try blocks (i.e. try-with-resources)
216 */ 216 */
217 ARM("arm"); 217 TRY("try");
218 218
219 LintCategory(String option) { 219 LintCategory(String option) {
220 this(option, false); 220 this(option, false);
221 } 221 }
222 222

mercurial