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);

This inspection only reports if the language level of the project or module is 5 or higher.