Fix incorrect check in GlobalReceiverRegistry ()

This commit is contained in:
apple502j 2022-07-22 04:07:48 +09:00 committed by modmuss50
parent 41a02c8a4e
commit 2d30af4b7a

View file

@ -68,7 +68,7 @@ public final class GlobalReceiverRegistry<H> {
try {
final boolean replaced = this.handlers.putIfAbsent(channelName, handler) == null;
if (!replaced) {
if (replaced) {
this.handleRegistration(channelName, handler);
}