Reports methods that can be converted to variable arity methods.

Example:


  void process(String name, Object[] objects);

After the quick-fix is applied:


  void process(String name, Object... objects);