mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
13 lines
283 B
Java
13 lines
283 B
Java
import java.util.Map;
|
|
import java.util.Set;
|
|
import java.util.TreeSet;
|
|
import java.util.concurrent.atomic.LongAdder;
|
|
|
|
class Test {
|
|
|
|
{
|
|
Set<Map.Entry<String, Integer>> sort3 = new TreeSet<>((x, y) -> {
|
|
return Integer.compare(x.get<caret>Value(), y.getValue());
|
|
});
|
|
}
|
|
} |