Skip to content

Commit d810886

Browse files
committed
HSEARCH-5010 Upgrade to Lucene 10.0-SNAPSHOT
1 parent c9c39e3 commit d810886

File tree

2 files changed

+3
-3
lines changed
  • build/parents/build
  • util/internal/integrationtest/backend/lucene/src/main/java/org/hibernate/search/util/impl/integrationtest/backend/lucene/directory

2 files changed

+3
-3
lines changed

build/parents/build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
3838
Also make sure to update Javadocs for RewriteMethod.
3939
-->
40-
<version.org.apache.lucene>9.12.0</version.org.apache.lucene>
40+
<version.org.apache.lucene>10.0.0-SNAPSHOT</version.org.apache.lucene>
4141
<javadoc.org.apache.lucene.tag>${parsed-version.org.apache.lucene.majorVersion}_${parsed-version.org.apache.lucene.minorVersion}_${parsed-version.org.apache.lucene.incrementalVersion}</javadoc.org.apache.lucene.tag>
4242
<javadoc.org.apache.lucene.core.url>https://lucene.apache.org/core/${javadoc.org.apache.lucene.tag}/core/</javadoc.org.apache.lucene.core.url>
4343
<javadoc.org.apache.lucene.analysis.common.url>https://lucene.apache.org/core/${javadoc.org.apache.lucene.tag}/analysis/common/</javadoc.org.apache.lucene.analysis.common.url>

util/internal/integrationtest/backend/lucene/src/main/java/org/hibernate/search/util/impl/integrationtest/backend/lucene/directory/TrackingDirectory.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ public IndexInput openInput(String name, IOContext context) throws IOException {
7474
}
7575

7676
@Override
77-
public ChecksumIndexInput openChecksumInput(String name, IOContext context) throws IOException {
78-
return new TrackingChecksumIndexInput( delegate.openChecksumInput( name, context ), tracker );
77+
public ChecksumIndexInput openChecksumInput(String name) throws IOException {
78+
return new TrackingChecksumIndexInput( delegate.openChecksumInput( name ), tracker );
7979
}
8080

8181
@Override

0 commit comments

Comments
 (0)