Skip to content

Commit

Permalink
codestyle
Browse files Browse the repository at this point in the history
  • Loading branch information
lehatheslayer committed Apr 25, 2024
1 parent 7415463 commit f8b9573
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ public final class ChunkedResponseSender {
private static final byte[] TRANSFER_ENCODING = "Transfer-Encoding: chunked".getBytes(StandardCharsets.UTF_8);
private static final byte[] CONNECTION = "Connection: keep-alive".getBytes(StandardCharsets.UTF_8);

private ChunkedResponseSender() { }
private ChunkedResponseSender() {

}

public static void generateHeaderAndWrite(HttpSession session) throws IOException {
ByteArrayBuilder builder = new ByteArrayBuilder();
Expand Down

0 comments on commit f8b9573

Please sign in to comment.