Reports methods with which can be converted to a variable arity method. Example:
  void process(String name, Object[] objects);
Can be converted to:
  void process(String name, Object... objects);

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