Fix countWords npe

This commit is contained in:
max-klaus 2020-09-25 11:47:46 +03:00
parent c34370169c
commit b69b30a030

View file

@ -229,14 +229,16 @@ public class SearchPhrase {
} }
public int countWords(String w) { public int countWords(String w) {
String[] ws = w.split(ALLDELIMITERS);
int cnt = 0; int cnt = 0;
if (!Algorithms.isEmpty(w)) {
String[] ws = w.split(ALLDELIMITERS);
for (int i = 0; i < ws.length; i++) { for (int i = 0; i < ws.length; i++) {
String wd = ws[i].trim(); String wd = ws[i].trim();
if (wd.length() > 0) { if (wd.length() > 0) {
cnt++; cnt++;
} }
} }
}
return cnt; return cnt;
} }