This commit is contained in:
Lukas Eder 2020-09-07 18:11:13 +02:00
parent fc90811118
commit 9442a0dcae

View File

@ -2604,7 +2604,7 @@ public abstract class AbstractDatabase implements Database {
}
protected final <T extends Definition> List<T> filterExcludeInclude(List<T> definitions, String e, String i) {
return filterExcludeInclude(definitions, new String[] { e }, new String[] { i != null ? i : ".*" }, Collections.emptyList());
return filterExcludeInclude(definitions, new String[] { e }, new String[] { i != null ? i : ".*" }, Collections.<Filter>emptyList());
}
protected final <T extends Definition> List<T> filterExcludeInclude(List<T> definitions, String[] e, String[] i, List<Filter> f) {