mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-03 10:22:24 +07:00
9 lines
165 B
Java
9 lines
165 B
Java
// "Replace with old style 'switch' statement" "false"
|
|
import java.util.*;
|
|
|
|
class SwitchExpressionMigration {
|
|
void foo(int n) {
|
|
<caret>switch (n) {
|
|
}
|
|
}
|
|
} |