Files
openide/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/quickFix/streamApiMigration/anyMatch/afterAnyMatchCompoundAssignment.java

13 lines
251 B
Java

// "Replace with anyMatch()" "true"
import java.util.List;
public class Main {
public boolean testAnyMatch(List<String> data) {
int x = 10;
if (data.stream().map(String::trim).anyMatch(String::isEmpty)) {
x *= 2;
}
}
}