mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 15:27:45 +07:00
Related: IDEA-372834 GitOrigin-RevId: 6cceb2c89e45572f6244768031ef29fe455eb437
22 lines
550 B
HTML
22 lines
550 B
HTML
<html>
|
|
<body>
|
|
Reports local variables or parameters that may have the <code>final</code> modifier added to their declaration.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
ArrayList<Integer> list = new ArrayList();
|
|
fill(list);
|
|
return list;
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
final ArrayList<Integer> list = new ArrayList();
|
|
fill(list);
|
|
return list;
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>
|
|
Use the inspection's options to define what kinds of parameters or local variables should be reported.
|
|
</p>
|
|
</body>
|
|
</html>
|