mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-14 18:05:27 +07:00
19 lines
383 B
HTML
19 lines
383 B
HTML
<html>
|
|
<body>
|
|
<p>Reports parameters or local variables that may have a final modifier added.</p>
|
|
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
def list = [1,2,3]
|
|
return list
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:
|
|
<pre><code>
|
|
final def list = [1,2,3]
|
|
return list
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p>For more information, see the same inspection in Java.</p>
|
|
</body>
|
|
</html>
|