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++;
  }