Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# See https://github.com/apache/solr/blob/main/dev-docs/changelog.adoc
title: Remove the deprecated SolrCore.getAdminResponseWriter method. Use ResponseWritersRegistry.getWriter instead.
type: removed
authors:
- name: Serhiy Bzhezytskyy
links:
- name: SOLR-18389
url: https://issues.apache.org/jira/browse/SOLR-18389
12 changes: 0 additions & 12 deletions solr/core/src/java/org/apache/solr/core/SolrCore.java
Original file line number Diff line number Diff line change
Expand Up @@ -3055,18 +3055,6 @@ default String getContentType() {
void write(OutputStream os) throws IOException;
}

/**
* Gets a response writer suitable for node/container-level requests.
*
* @param writerName the writer name, or null for default
* @return the response writer, never null
* @deprecated Use {@link ResponseWritersRegistry#getWriter(String)} instead.
*/
@Deprecated
public static QueryResponseWriter getAdminResponseWriter(String writerName) {
return ResponseWritersRegistry.getWriter(writerName);
}

/**
* Initializes query response writers. Response writers from {@code ImplicitPlugins.json} may also
* be configured.
Expand Down
Loading