This is an automated email from the ASF dual-hosted git repository.
hossman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new 39ab8f23335 SOLR-17834: missing @Override annotation in test
39ab8f23335 is described below
commit 39ab8f23335d62b0e697c8dff30ab131283382ef
Author: Chris Hostetter <[email protected]>
AuthorDate: Thu Aug 14 11:23:09 2025 -0700
SOLR-17834: missing @Override annotation in test
---
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();
}