Files
openide/java/java-impl/resources/inspectionDescriptions/NestedSwitchStatement.html
Leonid Shalupov 40795fe787 IJI-2422: community/java: move resources under resources root
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
2025-02-05 04:43:28 +00:00

20 lines
473 B
HTML

<html>
<body>
Reports nested <code>switch</code> statements or expressions.
<p>Nested <code>switch</code> statements
may result in extremely confusing code. These statements may be extracted to a separate method.</p>
<p>Example:</p>
<pre><code>
int res = switch (i) {
case 0 -> 0;
default -> switch (i) {
case 100 -> 0;
default -> i;
};
};
</code></pre>
<!-- tooltip end -->
<p>
</body>
</html>