Java
Unnecessary 'break' statement
Warning
New
Last modified: 03 December 2024 Reports any unnecessary break
statements.
An break
statement is unnecessary if no other statements are executed after it has been removed.
Example:
switch (e) {
case A -> {
System.out.println("A");
break; // reports 'break' statement is unnecessary
}
default -> {
System.out.println("Default");
break; // reports 'break' statement is 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.
UnnecessaryBreak
Inspection Details | |
---|---|
By default bundled with: | |
Can be installed with plugin: | Java, 243.23126 |
Thanks for your feedback!
Was this page helpful?