Inspectopedia
 
2024.3

Unnecessary 'continue' statement

Warning
Last modified: 03 December 2024

Reports continue statements if they are the last reachable statements in the loop. These continue statements are unnecessary and can be safely removed.

Example:

After the quick-fix is applied:

The inspection doesn't analyze JSP files.

Use the Ignore in then branch of 'if' statement with 'else' branch option to ignore continue statements when they are placed in a then branch of a complete if-else statement.

Example: