This is an automated email from the ASF dual-hosted git repository. dsmiley 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 d0897fc3c21 Remove deprecated MapWriter.append d0897fc3c21 is described below commit d0897fc3c213d6ece3a1ffeabc4057516de10ecc Author: David Smiley <dsmi...@salesforce.com> AuthorDate: Thu Jan 2 14:43:37 2025 -0500 Remove deprecated MapWriter.append --- solr/solrj/src/java/org/apache/solr/common/MapWriter.java | 9 --------- 1 file changed, 9 deletions(-) diff --git a/solr/solrj/src/java/org/apache/solr/common/MapWriter.java b/solr/solrj/src/java/org/apache/solr/common/MapWriter.java index c103461d694..ed9da582fdc 100644 --- a/solr/solrj/src/java/org/apache/solr/common/MapWriter.java +++ b/solr/solrj/src/java/org/apache/solr/common/MapWriter.java @@ -74,15 +74,6 @@ public interface MapWriter extends MapSerializable, NavigableObject, JSONWriter. writer.endObject(); } - @Deprecated - default MapWriter append(MapWriter another) { - MapWriter m = this; - return ew -> { - m.writeMap(ew); - another.writeMap(ew); - }; - } - /** * An interface to push one entry at a time to the output. The order of the keys is not defined, * but we assume they are distinct -- don't call {@code put} more than once for the same key.