mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-25 02:21:17 +07:00
11 lines
284 B
Java
11 lines
284 B
Java
// "Wrap with unmodifiable map" "true-preview"
|
|
import java.util.NavigableMap;
|
|
import java.util.SortedMap;
|
|
import java.util.TreeMap;
|
|
|
|
class C {
|
|
SortedMap<String, Integer> test() {
|
|
NavigableMap<String, Integer> result = new TreeMap<>();
|
|
return <caret>result;
|
|
}
|
|
} |