Skip to content

Commit

Permalink
Remove duplicate method call in NormalizationProcessorWorkflow
Browse files Browse the repository at this point in the history
Signed-off-by: Ryan Bogan <rbogan@amazon.com>
  • Loading branch information
ryanbogan committed Jan 15, 2025
1 parent c98b9c2 commit d9cf31a
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 d9cf31a

Please sign in to comment.