Reports any calls to
String.format()
or
PrintStream.printf()
where only a format string is provided, but no arguments. Such a call is unnecessary and can be replaced with just the string or a call to
PrintStream.print()
respectively.