Skip to content

Commit

Permalink
refactor: Solve merge conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
nikcio committed Aug 16, 2023
1 parent ecada8b commit 3b44ba3
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/Examine.Lucene/Search/LuceneSearchExecutor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,6 @@ public ISearchResults Execute()

TopDocs topDocs;
ICollector topDocsCollector;
var facetsCollector = _facetFields.Any() ? new FacetsCollector() : null;
bool trackMaxScore = _luceneQueryOptions == null ? false : _luceneQueryOptions.TrackDocumentMaxScore;
bool trackDocScores = _luceneQueryOptions == null ? false : _luceneQueryOptions.TrackDocumentScores;

Expand Down Expand Up @@ -196,7 +195,7 @@ public ISearchResults Execute()
}
}

private static FieldDoc GetScoreDocAfter(LuceneQueryOptions luceneQueryOptions)
private static FieldDoc GetScoreDocAfter(SearchAfterOptions searchAfterOptions)
{
FieldDoc scoreDocAfter;

Expand Down

0 comments on commit 3b44ba3

Please sign in to comment.