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

12 lines
312 B
Java

// "Replace with 'getOrDefault()' call" "true"
import java.util.Map;
public class Main {
private static final String NONE = "none";
private String str;
public String testGetOrDefault(Map<String, String> map, String key, Main other) {
return map.conta<caret>insKey(key) ? map.get(key) : "oops";
}
}