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

20 lines
663 B
HTML

<html>
<body>
Reports variables with 'standard' names that do not correspond to their types.
Such names may be confusing. There are the following standard names for specific types:
<ul>
<li>i, j, k, m, n - <code>int</code></li>
<li>f - <code>float</code></li>
<li>d - <code>double</code></li>
<li>b - <code>byte</code></li>
<li>c, ch - <code>char</code></li>
<li>l - <code>long</code></li>
<li>s, str - <code>String</code></li>
</ul>
<p>Rename quick-fix is suggested only in the editor.</p>
<!-- tooltip end -->
<p>
Use the option to ignore parameter names which are identical to the parameter name from a direct super method.
</p>
</body>
</html>