From 2af5b37c656fed641922447947c099c109f6ce6d Mon Sep 17 00:00:00 2001 From: Albumen Kevin Date: Wed, 13 Nov 2024 15:39:31 +0800 Subject: [PATCH] Fix init order --- .../remoting/api/pu/AbstractPortUnificationServer.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/api/pu/AbstractPortUnificationServer.java b/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/api/pu/AbstractPortUnificationServer.java index f95a764a9a1..33cbc5389d5 100644 --- a/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/api/pu/AbstractPortUnificationServer.java +++ b/dubbo-remoting/dubbo-remoting-api/src/main/java/org/apache/dubbo/remoting/api/pu/AbstractPortUnificationServer.java @@ -69,10 +69,10 @@ protected final void doOpen() { protected abstract void doOpen0(); /* - This method registers URL object and corresponding channel handler to pu server. - In PuServerExchanger.bind, this method is called with ConcurrentHashMap.computeIfPresent to register messages to - this supportedUrls and supportedHandlers - */ + This method registers URL object and corresponding channel handler to pu server. + In PuServerExchanger.bind, this method is called with ConcurrentHashMap.computeIfPresent to register messages to + this supportedUrls and supportedHandlers + */ public void addSupportedProtocol(URL url, ChannelHandler handler) { this.supportedUrls.put(url.getProtocol(), url); this.supportedHandlers.put(url.getProtocol(), handler);