mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 16:21:49 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
15 lines
340 B
HTML
15 lines
340 B
HTML
<html>
|
|
<body>
|
|
Reports <code>continue</code> statements.
|
|
<p><code>continue</code> statements complicate refactoring and can be confusing.</p>
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
void foo(List<String> strs) {
|
|
for (String str : strs) {
|
|
if (str.contains("skip")) continue;
|
|
handleStr(str);
|
|
}
|
|
}
|
|
</code></pre>
|
|
</body>
|
|
</html> |