public boolean equals()

in chatterbox-xmpp/chatterbox-xmpp-impl/src/main/java/org/apache/tomee/chatterbox/xmpp/impl/XMPPManagedConnectionFactory.java [113:122]


    public boolean equals(Object other) {
        if (other == null)
            return false;
        if (other == this)
            return true;
        if (!(other instanceof XMPPManagedConnectionFactory))
            return false;
        boolean result = true;
        return result;
    }