< prev index next >

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

Print this page
rev 3467 : [mq]: 8153362-phase1

@@ -228,11 +228,16 @@
         UNCHECKED("unchecked"),
 
         /**
          * Warn about potentially unsafe vararg methods
          */
-        VARARGS("varargs");
+        VARARGS("varargs"),
+
+        /**
+         * Warn about unexported types being used in public APIs.
+         */
+        LEAKS_NOT_ACCESSIBLE("leaksnotaccessible");
 
         LintCategory(String option) {
             this(option, false);
         }
 
< prev index next >