mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
12 lines
239 B
Java
12 lines
239 B
Java
// "Merge sequential 'if' statements" "true-preview"
|
|
|
|
class Test {
|
|
public static void main(String[] args) {
|
|
//c3
|
|
if (args.length == 1 || args.length == 2) {
|
|
return; // c1
|
|
}//c2
|
|
System.out.println();
|
|
}
|
|
}
|