Back to Intellij Community

BlockMarkerComments

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

2025.3-rc-2225 B
Original Source

Reports comments which are used as code block markers. The quick-fix removes such comments.

Example:

while (i < 10) {
    i++;
  } // end while

After the quick-fix is applied:

while (i < 10) {
    i++;
  }