Reports System.out.println() and System.out.print() calls and suggests replacing them with methods from java.lang.IO class.

This inspection helps migrate code to use the newer java.lang.IO class

Example:

System.out.println("Hello, World!");

After the quick-fix is applied:

IO.println("Hello, World!");

Configure the inspection:

New in 2025.2