var
type that can be replaced with an explicit type.
Example:
var str = "Hello";
After the quick-fix is applied:
String str = "Hello";
var
keyword appeared in Java 10.
This inspection can help to downgrade for backward compatibility with earlier Java versions.