mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
14 lines
276 B
HTML
14 lines
276 B
HTML
<html>
|
|
<body>
|
|
Reports array initializers without <code>new</code> array expressions and suggests adding them.
|
|
<p>Example:</p>
|
|
<pre><code>
|
|
int[] a = {42}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
int[] a = new int[]{42}
|
|
</code></pre>
|
|
</body>
|
|
</html>
|