155156157158159160161
String ce = getHeader("Content-Encoding"); in = method.getResponseBodyAsStream(); if (ce != null) in = ContentEncodingUtil.getDecodingInputStream(in, ce); } return new AutoReleasingInputStream(method,in); }
152153154155156157158159160
if (in == null) { String ce = getHeader("Content-Encoding"); in = method.getResponseBodyAsStream(); if (ce != null) in = CompressionUtil.getDecodingInputStream(in, ce); in = new AutoReleasingInputStream(method,in); } return in; }
147148149150151152153154155
String ce = getHeader("Content-Encoding"); in = method.getResponseBodyAsStream(); if (ce != null && in != null) { in = CompressionUtil.getDecodingInputStream(in, ce); } in = new AutoReleasingInputStream(method, in); } return in; }
146147148149150151152153154
if (in == null) { String ce = getHeader("Content-Encoding"); in = method.getResponseBodyAsStream(); if (ce != null) in = CompressionUtil.getDecodingInputStream(in, ce); in = new AutoReleasingInputStream(method, in); } return in; }
if (in == null) { String ce = getHeader("Content-Encoding"); in = method.getResponseBodyAsStream(); if (ce != null) in = EncodingUtil.getDecodingInputStream(in, ce); in = new AutoReleasingInputStream(method,in); } return in; }
String ce = getHeader("Content-Encoding"); in = method.getResponseBodyAsStream(); if (ce != null) in = EncodingUtil.getDecodingInputStream(in, ce); } return new AutoReleasingInputStream(method,in); }