mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
StreamToLoopInspection: preserve comments; CommentTracker: now possible to delete element first and only after that register unchanged parts.
This commit is contained in:
+1
-1
@@ -6,7 +6,7 @@ import java.util.stream.IntStream;
|
||||
public class Main {
|
||||
private static IntSummaryStatistics test() {
|
||||
IntSummaryStatistics stat = new IntSummaryStatistics();
|
||||
for (int i : new int[]{1, 2, 3}) {
|
||||
for (int i : new int[]{1,/*two*/2,/*three*/3}) {
|
||||
stat.accept(i);
|
||||
}
|
||||
return stat;
|
||||
|
||||
Reference in New Issue
Block a user