Merge pull request #5601 from varunu28/master

Fixed a bug in findWord method
This commit is contained in:
Eric Martin 2018-11-02 20:26:42 -05:00 committed by GitHub
commit ab821cb4e5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,10 +12,13 @@ public class WordIndexer {
String lowerCaseWord = word.toLowerCase();
while(index != -1) {
index = lowerCaseTextString.indexOf(lowerCaseWord, index + 1);
if (index != -1) {
indexes.add(index);
index = lowerCaseTextString.indexOf(lowerCaseWord, index);
if (index == -1) {
break;
}
indexes.add(index);
index++;
}
return indexes;
}