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