Fixed handling of comments in forEach migration

This commit is contained in:
Tagir Valeev
2017-11-27 16:54:55 +07:00
parent b8b04cea24
commit 672a49df94
3 changed files with 9 additions and 10 deletions
@@ -6,7 +6,7 @@ public class Main {
private void test() {
List<String> other = new ArrayList<>();
// c1
//c2
//c2
other.stream().filter(s -> s.length() > 2).forEach(System.out::println);
}
}