Skip to content

Commit

Permalink
Remove duplicate method call in NormalizationProcessorWorkflow (#1110)
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Bogan <[email protected]>
(cherry picked from commit 660f577)
  • Loading branch information
ryanbogan authored and github-actions[bot] committed Jan 16, 2025
1 parent 763fa5e commit 443571f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public class NormalizationProcessorWorkflow {
public void execute(final NormalizationProcessorWorkflowExecuteRequest request) {
List<QuerySearchResult> querySearchResults = request.getQuerySearchResults();
Optional<FetchSearchResult> fetchSearchResultOptional = request.getFetchSearchResultOptional();
List<Integer> unprocessedDocIds = unprocessedDocIds(request.getQuerySearchResults());
List<Integer> unprocessedDocIds = unprocessedDocIds(querySearchResults);

// pre-process data
log.debug("Pre-process query results");
Expand Down

0 comments on commit 443571f

Please sign in to comment.