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