Files
2026-01-16 13:57:13 +00:00

12 lines
340 B
Java

// "Replace with 'getOrDefault()' call" "true"
import java.util.Map;
public class Main {
public void testGetOrDefault(Map<String, String> map, String key, Main other) {
String a = null, str = map.getOrDefault(key, "");
// before if
// comment
/* after comment */
System.out.println(str);
}
}