gerlowskija commented on code in PR #1412: URL: https://github.com/apache/solr/pull/1412#discussion_r1129848725
########## solr/core/src/java/org/apache/solr/jersey/SolrJacksonMapper.java: ########## @@ -18,15 +18,44 @@ package org.apache.solr.jersey; import com.fasterxml.jackson.annotation.JsonInclude; +import com.fasterxml.jackson.core.JsonGenerator; import com.fasterxml.jackson.databind.ObjectMapper; +import com.fasterxml.jackson.databind.SerializerProvider; +import com.fasterxml.jackson.databind.module.SimpleModule; +import com.fasterxml.jackson.databind.ser.std.StdSerializer; +import java.io.IOException; import javax.ws.rs.ext.ContextResolver; import javax.ws.rs.ext.Provider; +import org.apache.solr.common.util.NamedList; /** Customizes the ObjectMapper settings used for serialization/deserialization in Jersey */ +@SuppressWarnings("rawtypes") Review Comment: Yeah, I looked into it a bit but couldn't quite figure out the right syntax unfortunately ☹️ -- 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