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

27 lines
666 B
HTML

<html>
<body>
Reports unnecessary array length checks followed by array iteration. When array length is zero,
the iteration will be skipped anyway, so there's no need to check length explicitly.
<p>Example:</p>
<pre><code>
void f(String[] array) {
if (array.length != 0) { // unnecessary check
for (String str : array) {
System.out.println(str);
}
}
}
</code></pre>
<p>A quick-fix is suggested to unwrap or remove the length check:</p>
<pre><code>
void f(String[] array) {
for (String str : array) {
System.out.println(str);
}
}
</code></pre>
<!-- tooltip end -->
<p><small>New in 2022.3</small></p>
</body>
</html>