Unnecessary 'continue' statement
Reports continue
statements if they are the last reachable statements in the loop. These continue
statements are unnecessary and can be safely removed.
Example:
for (String element: elements) {
System.out.println();
continue;
}
After the quick-fix is applied:
for (String element: elements) {
System.out.println();
}
The inspection doesn't analyze JSP files.
- By ID
Can be used to locate inspection in e.g. Qodana configuration files, where you can quickly enable or disable it, or adjust its settings.
UnnecessaryContinue
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:
for (String element: elements) {
if(element.isEmpty()) {
continue;
} else {
//...
}
}
Here you can find the description of settings available for the Unnecessary 'continue' statement inspection, and the reference of their default values.
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!