Skip to content
This repository has been archived by the owner on Mar 29, 2024. It is now read-only.

don't implement method with do-nothing default #517

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -125,11 +125,9 @@ default Set<IPersonAttributes> getPeople(final Map<String, Object> query,
* @return A {@link Set} of {@link IPersonAttributes}s that match the query {@link Map}. If no matches are found an empty {@link Set} is returned. If the query could not be run null is returned.
* @throws IllegalArgumentException If <code>query</code> is <code>null.</code>
*/
default Set<IPersonAttributes> getPeopleWithMultivaluedAttributes(final Map<String, List<Object>> query,
Set<IPersonAttributes> getPeopleWithMultivaluedAttributes(final Map<String, List<Object>> query,
final IPersonAttributeDaoFilter filter,
final Set<IPersonAttributes> resultPeople) {
return new LinkedHashSet<>(0);
}
final Set<IPersonAttributes> resultPeople);

default Set<IPersonAttributes> getPeopleWithMultivaluedAttributes(final Map<String, List<Object>> query,
final IPersonAttributeDaoFilter filter) {
Expand Down