Files
openide/java/java-impl/resources/inspectionDescriptions/UnnecessaryLabelOnContinueStatement.html
2025-02-05 04:43:28 +00:00

18 lines
355 B
HTML

<html>
<body>
Reports <code>continue</code> statements with unnecessary
labels.
<p>Example:</p>
<pre><code>
LABEL:
while (a &gt; b) {
System.out.println("Hello");
//the code below is the last statement in a loop,
//so unnecessary label and continue can be removed
continue LABEL;
}
</code></pre>
<!-- tooltip end -->
</body>
</html>