mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-03 11:47:50 +07:00
preserve comments: merge sequential ifs
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
// "Merge sequential 'if's" "true"
|
||||
|
||||
class Test {
|
||||
public static void main(String[] args) {
|
||||
//c2
|
||||
if (args.length == 1 || args.length == 2) {
|
||||
return; // c1
|
||||
}
|
||||
System.out.println();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user