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

15 lines
267 B
Java

// "Replace with noneMatch()" "true"
public class Main {
boolean find(String[][] data) {
for(String[] arr : da<caret>ta) {
for(String str : arr) {
if(str.startsWith("xyz")) {
return false;
}
}
}
return true;
}
}