mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
14 lines
324 B
HTML
14 lines
324 B
HTML
<html>
|
|
<body>
|
|
Reports methods that can be converted to variable arity methods.
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
void process(String name, Object[] objects);
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
void process(String name, Object... objects);
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
</body>
|
|
</html> |