[java-inspections] More quickfixes to ModCommand

GitOrigin-RevId: ccc6093d680712cb81c1325d997fb2771b61a0be
This commit is contained in:
Tagir Valeev
2023-06-23 21:05:14 +02:00
committed by intellij-monorepo-bot
parent 80fe6724fe
commit ad40c945e2
90 changed files with 755 additions and 1129 deletions

View File

@@ -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) {