Files
openide/java/java-tests/testData/inspection/streamApiCallChains/beforeMapToPeekMultiline.java
T

20 lines
529 B
Java

// "Replace with 'peek'" "true"
import java.util.List;
public class Main {
void test(List<String> list) {
long count = list.stream()
.ma<caret>p(e -> {
if(e.isEmpty()) {
System.out.println("Empty line passed!");
throw new IllegalArgumentException();
}
// hello
return /* in return */ e;
})
.count();
System.out.println(count);
}
}