mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-15 09:40:56 +07:00
14 lines
243 B
Java
14 lines
243 B
Java
// "Merge sequential 'if's" "true"
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
i<caret>f (args.length == 1) {
|
|
return; // c1
|
|
}
|
|
else if (args.length == 2) {
|
|
return; //c2
|
|
}
|
|
System.out.println();
|
|
}
|
|
}
|