mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
20 lines
531 B
HTML
20 lines
531 B
HTML
<html>
|
|
<body>
|
|
Reports any unnecessary <code>break</code> statements.
|
|
<p>An <code>break</code> statement is unnecessary if no other statements are executed after it has been removed.</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
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
|
|
}
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |