From 6eabf825138e5d89595b9476bedd8d951099966c Mon Sep 17 00:00:00 2001 From: Andrew Steinborn Date: Tue, 14 May 2019 04:26:16 -0400 Subject: [PATCH] Fix inaccurate comment. --- proxy/src/main/java/com/velocitypowered/proxy/Velocity.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/proxy/src/main/java/com/velocitypowered/proxy/Velocity.java b/proxy/src/main/java/com/velocitypowered/proxy/Velocity.java index 4d5dcb7a5..c0a861f92 100644 --- a/proxy/src/main/java/com/velocitypowered/proxy/Velocity.java +++ b/proxy/src/main/java/com/velocitypowered/proxy/Velocity.java @@ -18,7 +18,7 @@ public class Velocity { // sane default. // // Note: io.netty.allocator.pageSize << io.netty.allocator.maxOrder is the formula used to - // compute the chunk size. We lower maxOrder from its default of 11 to 8. (We also use a null + // compute the chunk size. We lower maxOrder from its default of 11 to 9. (We also use a null // check, so that the user is free to choose another setting if need be.) if (System.getProperty("io.netty.allocator.maxOrder") == null) { System.setProperty("io.netty.allocator.maxOrder", "9");