Skip to content

Commit

Permalink
secureCodeBox#121 Do not Create Unecessary Objects
Browse files Browse the repository at this point in the history
Signed-off-by: Sven Strittmatter <[email protected]>
  • Loading branch information
Weltraumschaf committed Jul 3, 2024
1 parent 78f330a commit 29ba64d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ public final List<T> search(@NonNull Map<String, Object> queryParams) {

@Override
public final List<T> search() {
return search(new LinkedHashMap<>());
return search(Collections.emptyMap());
}

@Override
Expand Down

0 comments on commit 29ba64d

Please sign in to comment.