risdenk commented on a change in pull request #706: URL: https://github.com/apache/solr/pull/706#discussion_r815942920
########## File path: solr/solrj/src/java/org/apache/solr/client/solrj/response/AnalysisResponseBase.java ########## @@ -122,15 +122,16 @@ protected TokenInfo buildTokenInfo(NamedList<?> tokenNL) { int end = (Integer) tokenNL.get("end"); int position = (Integer) tokenNL.get("position"); Boolean match = (Boolean) tokenNL.get("match"); - return new TokenInfo(text, rawText, type, start, end, position, (match == null ? false : match)); + return new TokenInfo( + text, rawText, type, start, end, position, (match == null ? false : match)); } - - //================================================= Inner Classes ================================================== + // ================================================= Inner Classes Review comment: Fixed in eec4ea82f595a2cf78b6380e9900677b34bcea19 -- 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