Bug description
The JavaDoc of BatchStatus.isLessThanOrEqualTo(BatchStatus other) is slightly misleading.
It currently states:
@return {@code true} if this is less than {@code other}.
However, the method actually checks for less than or equal to.
Expected behavior
Update the JavaDoc to accurately reflect that the method returns true when this status is less than or equal to the given status.
@return {@code true} if this is less than or equalt to {@code other}.
Bug description
The JavaDoc of
BatchStatus.isLessThanOrEqualTo(BatchStatus other)is slightly misleading.It currently states:
However, the method actually checks for
less than or equal to.Expected behavior
Update the JavaDoc to accurately reflect that the method returns true when this status is less than or equal to the given status.