public boolean equals()

in core/src/main/java/org/apache/commons/functor/core/composite/ConditionalProcedure.java [94:105]


    public boolean equals(Object obj) {
        if (obj == this) {
            return true;
        }
        if (!(obj instanceof ConditionalProcedure<?>)) {
            return false;
        }
        ConditionalProcedure<?> that = (ConditionalProcedure<?>) obj;
        return this.ifPred.equals(that.ifPred)
                && this.thenProc.equals(that.thenProc)
                && this.elseProc.equals(that.elseProc);
    }