iamsanjay commented on code in PR #1734:
URL: https://github.com/apache/solr/pull/1734#discussion_r1246899737


##########
solr/core/src/java/org/apache/solr/handler/api/V2ApiUtils.java:
##########
@@ -85,6 +85,11 @@ public static void squashIntoNamedList(
     squashIntoNamedList(destination, mw, false);
   }
 
+  public static void squashIntoNamedListWithoutHeader(
+      NamedList<Object> destination, JacksonReflectMapWriter mw) {
+    squashIntoNamedList(destination, mw, true);
+  }
+

Review Comment:
   Here I have introduced new method named `squashIntoNamedListWithoutHeader` 
as I need to convert JerseyResponse into NamedList without Header. Currently 
the  method named `squashIntoNamedList` convert JerseyResponse to NamedList but 
also includes the responseHeader.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org
For additional commands, e-mail: issues-h...@solr.apache.org

Reply via email to