mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 08:09:39 +07:00
16 lines
230 B
Java
16 lines
230 B
Java
// "Collapse 'if' statement" "true"
|
|
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
|
|
public class Main {
|
|
|
|
|
|
public static void main(String[] args) {
|
|
if<caret>(true) {
|
|
int x = 12;
|
|
} else {
|
|
int x = 12;
|
|
}
|
|
}
|
|
} |