Unnecessary code block
Reports code blocks that are redundant to the semantics of the program and can be replaced with their contents.
The code blocks that are the bodies of if
, do
, while
, or for
statements will not be reported by this inspection.
Example:
void foo() {
{ // unnecessary
int result = call();
analyze(result);
} // unnecessary
}
Configure the inspection:
Use the Ignore branches of 'switch' statements option to ignore the code blocks that are used as branches of switch statements.
Inspection options
Option | Type | Default |
---|---|---|
Ignore branches of 'switch' statements | Checkbox | false |
Inspection Details | |
---|---|
Available in: | IntelliJ IDEA 2023.3, Qodana for JVM 2023.3 |
Plugin: | Java, 233.SNAPSHOT |
Last modified: 13 July 2023