Skip to content

Commit d0897fc

Browse files
committed
Remove deprecated MapWriter.append
1 parent d9461e2 commit d0897fc

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

solr/solrj/src/java/org/apache/solr/common/MapWriter.java

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -74,15 +74,6 @@ public MapWriter.EntryWriter put(CharSequence k, Object v) {
7474
writer.endObject();
7575
}
7676

77-
@Deprecated
78-
default MapWriter append(MapWriter another) {
79-
MapWriter m = this;
80-
return ew -> {
81-
m.writeMap(ew);
82-
another.writeMap(ew);
83-
};
84-
}
85-
8677
/**
8778
* An interface to push one entry at a time to the output. The order of the keys is not defined,
8879
* but we assume they are distinct -- don't call {@code put} more than once for the same key.

0 commit comments

Comments
 (0)