mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
16 lines
328 B
HTML
16 lines
328 B
HTML
<html>
|
|
<body>
|
|
Reports variable assignments that can be joined with a variable declaration.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
int x;
|
|
x = 1;
|
|
</code></pre>
|
|
<p>The quick-fix converts the assignment into an initializer:</p>
|
|
<pre><code>
|
|
int x = 1;
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p><small>New in 2018.3</small></p>
|
|
</body>
|
|
</html> |