Skip to content

Commit

Permalink
Merge pull request #5106 from openequella/renovate/apache-lucene-pack…
Browse files Browse the repository at this point in the history
…ages

chore(deps): update apache lucene packages to v9.10.0
  • Loading branch information
PenghaiZhang authored May 19, 2024
2 parents cf63ec8 + 29be805 commit 9461d45
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
import java.util.List;
import org.apache.lucene.search.FieldComparator;
import org.apache.lucene.search.FieldComparatorSource;
import org.apache.lucene.search.Pruning;

@SuppressWarnings("nls")
public class TaskSortSection extends AbstractSortOptionsSection<FreetextSearchEvent> {
Expand Down Expand Up @@ -103,7 +104,7 @@ private static FieldComparatorSource createCurrentUserFirstComparator() {

@Override
public FieldComparator<Integer> newComparator(
String fieldName, int numHits, boolean enableSkipping, boolean reversed) {
String fieldName, int numHits, Pruning pruning, boolean reversed) {
return new CustomLuceneSortComparator(numHits, fieldName, CurrentUser.getUserID());
}
};
Expand Down
2 changes: 1 addition & 1 deletion Source/Server/equellaserver/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ val jsoupVersion = "1.16.2"
val prometheusVersion = "0.16.0"
val sttpVersion = "2.3.0"
val tikaVersion = "2.9.1"
val luceneVersion = "9.8.0"
val luceneVersion = "9.10.0"

libraryDependencies ++= Seq(
"io.circe" %% "circe-core",
Expand Down

0 comments on commit 9461d45

Please sign in to comment.