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

Print this page

        

*** 220,232 **** * Warn about unchecked operations on raw types. */ UNCHECKED("unchecked"), /** ! * Warn about potentially unsafe vararg methods */ ! VARARGS("varargs"); LintCategory(String option) { this(option, false); } --- 220,239 ---- * Warn about unchecked operations on raw types. */ UNCHECKED("unchecked"), /** ! * Warn about potentially unsafe vararg methods. */ ! VARARGS("varargs"), ! ! /** ! * Warn when code refers to a type that is hidden in a source file (ie source file name is ! * different from the class name, and the type is not properly nested) and the referring code ! * is not located in the same source file. ! */ ! HIDDENCLASS("hiddenclass"); LintCategory(String option) { this(option, false); }