in impl/src/main/java/org/apache/rocketmq/remoting/impl/channel/NettyChannelImpl.java [78:88]
public boolean equals(final Object o) {
if (this == o)
return true;
if (o == null || getClass() != o.getClass())
return false;
final NettyChannelImpl that = (NettyChannelImpl) o;
return channel != null ? channel.equals(that.channel) : that.channel == null;
}