mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 13:20:56 +07:00
9 lines
247 B
Java
9 lines
247 B
Java
// "Replace lambda with method reference" "false"
|
|
import java.util.HashMap;
|
|
import java.util.Map;
|
|
|
|
class Test {
|
|
public static void main(Map<Integer, Map<Object, Object>> map) {
|
|
map.computeIfAbsent(123, key -> new Hash<caret>Map<>());
|
|
}
|
|
} |