mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-06 08:00:18 +07:00
GitOrigin-RevId: 571a82f66623887c1b5008963df842b2597c58c9
6 lines
178 B
Java
6 lines
178 B
Java
// "Remove 'comparing()' call" "true-preview"
|
|
import java.util.*;
|
|
|
|
class Test {
|
|
Comparator<String> cmp = Comparator.comparing(String::length).thenComparing(s -> s.charAt(1));
|
|
} |