Skip to content

Commit

Permalink
[CI] Auto commit changes from spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
elasticsearchmachine committed Jan 16, 2025
1 parent 61f4a32 commit 206f5d6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ private void handle(HttpExchange exchange) throws IOException {
logger.info("Response: {} {}", fileName, httpStatus);
exchange.sendResponseHeaders(httpStatus, numBytes);
while (numBytes > 0) {
byte[] bytes = is.readNBytes(Math.min(1<<20, numBytes));
byte[] bytes = is.readNBytes(Math.min(1 << 20, numBytes));
os.write(bytes);
numBytes -= bytes.length;
}
Expand Down

0 comments on commit 206f5d6

Please sign in to comment.