mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-30 20:05:16 +07:00
GitOrigin-RevId: 8b2b63fc6db476ca0c2cfe5cadd84db6c4236d0f
10 lines
325 B
HTML
10 lines
325 B
HTML
<html>
|
|
<body>
|
|
Reports arrays that are created specifically to be passed as a varargs parameter.
|
|
<p>Example:</p>
|
|
<p><code>Arrays.asList(new String[]{"Hello", "world"})</code></p>
|
|
<p>The quick-fix replaces the array initializer with individual arguments:</p>
|
|
<p><code>Arrays.asList("Hello", "world")</code></p>
|
|
</body>
|
|
</html>
|