Skip to content

Commit

Permalink
Fix init order
Browse files Browse the repository at this point in the history
  • Loading branch information
AlbumenJ committed Nov 13, 2024
1 parent 9e4c85c commit 2af5b37
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 2af5b37

Please sign in to comment.