< prev index next >

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

Print this page
@@ -276,10 +276,16 @@
           * <p>
           * This category is not supported by {@code @SuppressWarnings}.
           */
          INCUBATING("incubating", false),
  
+         /**
+          * Warn about code in identity classes that wouldn't be allowed in early
+          * construction due to a this dependency.
+          */
+         INITIALIZATION("initialization"),
+ 
          /**
            * Warn about compiler possible lossy conversions.
            */
          LOSSY_CONVERSIONS("lossy-conversions"),
  

@@ -291,10 +297,15 @@
          /**
           * Warn about module system related issues.
           */
          MODULE("module"),
  
+         /**
+          * Warn about issues related to migration of JDK classes.
+          */
+         MIGRATION("migration"),
+ 
          /**
           * Warn about issues regarding module opens.
           */
          OPENS("opens"),
  
< prev index next >