mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
[java-inspections] More quickfixes to ModCommand
GitOrigin-RevId: ccc6093d680712cb81c1325d997fb2771b61a0be
This commit is contained in:
committed by
intellij-monorepo-bot
parent
80fe6724fe
commit
ad40c945e2
@@ -14,15 +14,15 @@ public class Main {
|
||||
}
|
||||
}
|
||||
if(list.size() > 2) {
|
||||
for (String x : list) {
|
||||
if (x != null) {
|
||||
if (x.startsWith("x")) {
|
||||
System.out.println("Ok!");
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
for (String x : list) {
|
||||
if (x != null) {
|
||||
if (x.startsWith("x")) {
|
||||
System.out.println("Ok!");
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
if(list.size() > 2) {
|
||||
boolean b = false;
|
||||
for (String x : list) {
|
||||
|
||||
Reference in New Issue
Block a user