format()
printf()
Example:
System.out.println(String.format("Total count: %d", 42));
After the quick-fix is applied:
System.out.printf("Total count: %d%n", 42);