2022-12-07 17:30:18 +01:00
From feede4c38be31f029da9c86306795c9b94ae1e69 Mon Sep 17 00:00:00 2001
2016-05-28 18:34:39 +02:00
From: Tux <write@imaginarycode.com>
2018-05-28 22:53:01 +02:00
Date: Tue, 19 Jan 2016 15:13:29 -0700
2016-05-28 18:34:39 +02:00
Subject: [PATCH] Micro-optimizations
- PluginManager.dispatchCommand() avoids regex while splitting commands. Java 7 introduced an optimized String.split() that should be used instead (affects command dispatch).
2016-12-09 13:56:14 +01:00
- Don't attempt to format arguments when there are none provided
- Don't create a data input stream for every plugin message we get from servers
2016-05-28 18:34:39 +02:00
2016-12-09 13:56:14 +01:00
diff --git a/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java b/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
2022-12-07 17:30:18 +01:00
index 1059c67f..889e60c2 100644
2016-12-09 13:56:14 +01:00
--- a/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
+++ b/proxy/src/main/java/net/md_5/bungee/connection/DownstreamBridge.java
2022-12-07 17:30:18 +01:00
@@ -275,7 +275,6 @@ public class DownstreamBridge extends PacketHandler
2021-10-09 11:43:12 +02:00
@SuppressWarnings("checkstyle:avoidnestedblocks")
2016-12-09 13:56:14 +01:00
public void handle(PluginMessage pluginMessage) throws Exception
{
- DataInput in = pluginMessage.getStream();
2017-12-05 20:14:11 +01:00
PluginMessageEvent event = new PluginMessageEvent( server, con, pluginMessage.getTag(), pluginMessage.getData().clone() );
2016-12-09 13:56:14 +01:00
if ( bungee.getPluginManager().callEvent( event ).isCancelled() )
2022-12-07 17:30:18 +01:00
@@ -302,6 +301,7 @@ public class DownstreamBridge extends PacketHandler
2016-12-09 13:56:14 +01:00
if ( pluginMessage.getTag().equals( "BungeeCord" ) )
{
+ DataInput in = pluginMessage.getStream();
ByteArrayDataOutput out = ByteStreams.newDataOutput();
String subChannel = in.readUTF();
2016-05-28 18:34:39 +02:00
--
2022-11-14 20:14:25 +01:00
2.38.1
2016-05-28 18:34:39 +02:00