mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 00:20:54 +07:00
also fixes internationalization and the incorrect comma in the name for "Create missing switch branches" quick-fix GitOrigin-RevId: 16285e054447d8d15318df8889499bbbf91243a7
15 lines
253 B
Java
15 lines
253 B
Java
// "Create missing branch 'true'" "true-preview"
|
|
import java.util.List;
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
test(true);
|
|
}
|
|
|
|
public static void test(boolean b) {
|
|
switch (b<caret>){
|
|
case false -> {
|
|
}
|
|
}
|
|
}
|
|
} |