in src/main/java/com/spotify/github/http/okhttp/OkHttpHttpResponse.java [49:54]
public InputStream body() {
if (body == null) {
body = Optional.ofNullable(response.body()).map(ResponseBody::byteStream).orElse(null);
}
return body;
}