mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 02:50:55 +07:00
14 lines
447 B
Java
14 lines
447 B
Java
// "Replace with 'Entry.comparingByKey()'" "true-preview"
|
|
|
|
import java.util.Comparator;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.stream.Collectors;
|
|
|
|
class X {
|
|
private static List<Map.Entry<String, Integer>> sortFrequencies(Map<String, Integer> freq) {
|
|
return freq.entrySet().stream()
|
|
.sorted(Map.Entry.<String, Integer>comparingByKey().thenComparing(Map.Entry::getValue))
|
|
.collect(Collectors.toList());
|
|
}
|
|
} |