Skip to content

Commit

Permalink
Remove deprecated MapWriter.append
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmiley committed Jan 2, 2025
1 parent d9461e2 commit d0897fc
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions solr/solrj/src/java/org/apache/solr/common/MapWriter.java
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,6 @@ public MapWriter.EntryWriter put(CharSequence k, Object v) {
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.
Expand Down

0 comments on commit d0897fc

Please sign in to comment.