mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
14 lines
265 B
Java
14 lines
265 B
Java
// "Merge sequential 'if' statements" "true-preview"
|
|
|
|
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();
|
|
}
|
|
}
|