in core/src/main/java/org/apache/commons/functor/adapter/RightBoundProcedure.java [63:73]
public boolean equals(Object obj) {
if (obj == this) {
return true;
}
if (!(obj instanceof RightBoundProcedure<?>)) {
return false;
}
RightBoundProcedure<?> that = (RightBoundProcedure<?>) obj;
return this.procedure.equals(that.procedure)
&& (null == param ? null == that.param : param.equals(that.param));
}