Made requested changes for merge

Changed for-each loop back to for loop (for efficiency)
This commit is contained in:
Joshua Nelson 2017-11-05 18:31:16 -05:00
parent 9db6cdc1c2
commit 26cd24717e
No known key found for this signature in database
GPG key ID: E655823D8D8B1088

View file

@ -1166,8 +1166,8 @@ public class FolderList extends K9ListActivity {
}
final String valueText = value.displayName.toLowerCase(locale);
for (String word : words) {
if (valueText.contains(word)) {
for (int k = 0; k < wordCount; k++) {
if (valueText.contains(words[k])) {
newValues.add(value);
break;
}