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
}
- 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.
UnnecessaryCodeBlock
Configure the inspection:
Use the Ignore branches of 'switch' statements option to ignore the code blocks that are used as branches of switch statements.
Here you can find the description of settings available for the Unnecessary code block 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!