Remove redundant type declaration

This commit is contained in:
TobiGr 2021-03-14 00:58:17 +01:00
parent 22bd16fca3
commit 48fd8ca7b3
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ public abstract class SearchQueryHandlerFactory extends ListLinkHandlerFactory {
}
public SearchQueryHandler fromQuery(String query) throws ParsingException {
return fromQuery(query, new ArrayList<String>(0), EMPTY_STRING);
return fromQuery(query, new ArrayList<>(0), EMPTY_STRING);
}
/**