mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
22 lines
488 B
HTML
22 lines
488 B
HTML
<html>
|
|
<body>
|
|
Reports labels that are not targets of any <code>break</code> or <code>continue</code> statements.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
label: <b>for</b> (int i = 0; i < 10; i++) {
|
|
<b>if</b> (i == 3) {
|
|
<b>break</b>;
|
|
}
|
|
}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied, the label is removed:</p>
|
|
<pre><code>
|
|
<b>for</b> (int i = 0; i < 10; i++) {
|
|
<b>if</b> (i == 3) {
|
|
<b>break</b>;
|
|
}
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |