langtools/src/share/classes/com/sun/tools/javac/code/Lint.java
changeset 7211 163fe60f63de
parent 6151 dd513881e71d
child 7335 8b390fd27190
equal deleted inserted replaced
7210:8dd5f907461e 7211:163fe60f63de
   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