Reports the combinations of System.out.println(String.format(...)) so they can be converted to System.out.printf(...) using a quick-fix

Quick fix: removes String.format() calls and converts println to printf. E.g. System.out.println(String.format("%s, %s!", "Hello", "World")) will be converted to System.out.printf("%s, %s!%n", "Hello", "World")