mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-17 12:51:04 +07:00
set SPACE_BEFORE_COLON_IN_FOREACH true by default, fix tests
This commit is contained in:
+2
-2
@@ -6,9 +6,9 @@ import static java.util.Arrays.asList;
|
||||
|
||||
public class Main {
|
||||
public static boolean test(List<List<String>> list) {
|
||||
for (List<String> x: list) {
|
||||
for (List<String> x : list) {
|
||||
if (x != null) {
|
||||
for (String str: x) {
|
||||
for (String str : x) {
|
||||
if (str.startsWith("a")) {
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user