MigrateToStreamFix: explicit formatting removed (as formatted anyways automatically)

This commit is contained in:
Tagir Valeev
2018-05-30 18:23:38 +07:00
parent fa47bcb437
commit 3c2cd21d35
151 changed files with 175 additions and 176 deletions
@@ -8,7 +8,7 @@ import java.util.stream.Collectors;
public class Main {
List<String> test(BufferedReader br) throws IOException {
List<String> result = br.lines().map(String::trim).collect(Collectors.toList());
List<String> result = br.lines().map(String::trim).collect(Collectors.toList());
return result;
}
}
@@ -8,7 +8,7 @@ import java.util.stream.Collectors;
public class Main {
List<String> test(BufferedReader br) throws IOException {
List<String> result = br.lines().map(String::trim).collect(Collectors.toList());
List<String> result = br.lines().map(String::trim).collect(Collectors.toList());
return result;
}
}