continue filtering on first match
This commit is contained in:
parent
21e71f53d5
commit
bf2a8b8db7
@ -107,6 +107,7 @@ public class FilteredDataBus implements BusListener {
|
|||||||
if(filterIncomplete) {
|
if(filterIncomplete) {
|
||||||
if(!TranslationUtil.isIncomplete(value, this.data)) {
|
if(!TranslationUtil.isIncomplete(value, this.data)) {
|
||||||
shadow.setTranslation(key, null);
|
shadow.setTranslation(key, null);
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -114,6 +115,7 @@ public class FilteredDataBus implements BusListener {
|
|||||||
if(filterDuplicate) {
|
if(filterDuplicate) {
|
||||||
if(!TranslationUtil.hasDuplicates(new Translation(key, value), this.data)) {
|
if(!TranslationUtil.hasDuplicates(new Translation(key, value), this.data)) {
|
||||||
shadow.setTranslation(key, null);
|
shadow.setTranslation(key, null);
|
||||||
|
continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -121,6 +123,7 @@ public class FilteredDataBus implements BusListener {
|
|||||||
if(searchQuery != null) {
|
if(searchQuery != null) {
|
||||||
if(!TranslationUtil.isSearched(settings, new Translation(key, value), searchQuery)) {
|
if(!TranslationUtil.isSearched(settings, new Translation(key, value), searchQuery)) {
|
||||||
shadow.setTranslation(key, null);
|
shadow.setTranslation(key, null);
|
||||||
|
//continue;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user