Merge branch '3.4.x'
This commit is contained in:
@@ -179,10 +179,7 @@ abstract class HttpClientTransport implements HttpTransport {
|
||||
return null;
|
||||
}
|
||||
try (InputStream stream = entity.getContent()) {
|
||||
if (stream == null) {
|
||||
return null;
|
||||
}
|
||||
return stream.readAllBytes();
|
||||
return (stream != null) ? stream.readAllBytes() : null;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user