Back to Intellij Community

Java9ModuleExportsPackageToItself

java/java-impl/resources/inspectionDescriptions/Java9ModuleExportsPackageToItself.html

2025.3-rc-2310 B
Original Source

Reports packages that are exported to, or opened in the same Java 9 module in which they are defined. The quick-fix removes such directives from module-info.java.

Example:

module com.mycomp {
    exports com.mycomp.main to com.mycomp;
  }

After the quick-fix is applied:

module main {
  }