mirror of
https://github.com/PaperMC/Waterfall.git
synced 2024-11-28 21:25:47 +01:00
3d4d154926
Solves issue #201 with including the BungeeCord LICENSE file in binary distribution, as the license requires.
24 lines
1.0 KiB
Diff
24 lines
1.0 KiB
Diff
From b63cad3390214498b8d14ecf0ffc07999144b79a Mon Sep 17 00:00:00 2001
|
|
From: Tux <write@imaginarycode.com>
|
|
Date: Wed, 13 Apr 2016 15:17:05 -0400
|
|
Subject: [PATCH] Presize the HTTP response buffer
|
|
|
|
16 characters is extremely small, and all responses start around 256 bytes. 640 characters seems to be good (covering skins and capes), based on sampling profile API responses.
|
|
|
|
diff --git a/proxy/src/main/java/net/md_5/bungee/http/HttpHandler.java b/proxy/src/main/java/net/md_5/bungee/http/HttpHandler.java
|
|
index 96d0a71d..bac6b1b0 100644
|
|
--- a/proxy/src/main/java/net/md_5/bungee/http/HttpHandler.java
|
|
+++ b/proxy/src/main/java/net/md_5/bungee/http/HttpHandler.java
|
|
@@ -16,7 +16,7 @@ public class HttpHandler extends SimpleChannelInboundHandler<HttpObject>
|
|
{
|
|
|
|
private final Callback<String> callback;
|
|
- private final StringBuilder buffer = new StringBuilder();
|
|
+ private final StringBuilder buffer = new StringBuilder(640);
|
|
|
|
@Override
|
|
public void exceptionCaught(ChannelHandlerContext ctx, Throwable cause) throws Exception
|
|
--
|
|
2.18.0
|
|
|