Fix changes from review.

This commit is contained in:
Angel Borroy
2020-01-17 14:25:59 +01:00
parent 9ff35e7807
commit ee21af7b27
2 changed files with 3 additions and 3 deletions

View File

@@ -2501,7 +2501,7 @@ public class SolrInformationServer implements InformationServer
response);
InputStream ris = response.getContent();
if (null != response.getContentEncoding() && response.getContentEncoding().equals("gzip"))
if (response.getContentEncoding().equals("gzip"))
{
ris = new GZIPInputStream(ris);
}