Example:
void foo(Object obj) {
String s = (String) obj;
System.out.println(((String) obj).trim());
}
After the quick-fix is applied:
void foo(Object obj) {
String s = (String) obj;
System.out.println(s.trim());
}
New in 2022.3