MCPcopy Index your code
hub / github.com/OpenFeign/feign / isGzip

Method isGzip

core/src/main/java/feign/DefaultClient.java:229–233  ·  view source on GitHub ↗
(Collection<String> contentEncodingValues)

Source from the content-addressed store, hash-verified

227 }
228
229 private boolean isGzip(Collection<String> contentEncodingValues) {
230 return contentEncodingValues != null
231 && !contentEncodingValues.isEmpty()
232 && contentEncodingValues.contains(ENCODING_GZIP);
233 }
234
235 private boolean isDeflate(Collection<String> contentEncodingValues) {
236 return contentEncodingValues != null

Callers 2

convertResponseMethod · 0.95
convertAndSendMethod · 0.95

Calls 1

isEmptyMethod · 0.80

Tested by

no test coverage detected