This is an automated email from the ASF dual-hosted git repository.
hossman pushed a commit to branch branch_9_9
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/branch_9_9 by this push:
new c79817d6b54 SOLR-17834: missing @Override annotation in test
c79817d6b54 is described below
commit c79817d6b543db72e658440c0fd31b0dc1ea80e4
Author: Chris Hostetter <[email protected]>
AuthorDate: Thu Aug 14 11:23:09 2025 -0700
SOLR-17834: missing @Override annotation in test
(cherry picked from commit 39ab8f23335d62b0e697c8dff30ab131283382ef)
---
solr/core/src/test/org/apache/solr/core/TestSetPropertyConfigApis.java | 1 +
1 file changed, 1 insertion(+)
diff --git
a/solr/core/src/test/org/apache/solr/core/TestSetPropertyConfigApis.java
b/solr/core/src/test/org/apache/solr/core/TestSetPropertyConfigApis.java
index 489013ba237..eb60c3f8347 100644
--- a/solr/core/src/test/org/apache/solr/core/TestSetPropertyConfigApis.java
+++ b/solr/core/src/test/org/apache/solr/core/TestSetPropertyConfigApis.java
@@ -334,6 +334,7 @@ public class TestSetPropertyConfigApis extends
SolrCloudTestCase {
core.addCloseHook(
new CloseHook() {
+ @Override
public void postClose(SolrCore core) {
latch.countDown();
}