mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-02 14:38:30 +07:00
- not show used patterns - prioritize for rules - support smart mode GitOrigin-RevId: 647d1c3cbe51d46cf97c7c2ac95e9f0fd0dd4220
10 lines
119 B
Java
10 lines
119 B
Java
|
|
class Main {
|
|
|
|
void f(Object o) {
|
|
switch (o) {
|
|
case null -> System.out.println();
|
|
<caret>
|
|
}
|
|
}
|
|
} |