mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-29 02:36:42 +07:00
9 lines
140 B
Java
9 lines
140 B
Java
import java.util.*;
|
|
|
|
class Foo {
|
|
void test() {
|
|
Map<String, String> map = new HashMap<>();
|
|
map.computeIfAbsent()
|
|
}
|
|
}
|