Fix check of whether one job executes within the bounds of another.

This commit is contained in:
John M. Penn 2025-01-29 14:45:17 -06:00
parent 7595728216
commit 65d1355c26

View File

@ -47,8 +47,8 @@ class JobExecutionEvent {
* within another jobs stop/stop range.
*/
public boolean contains( JobExecutionEvent other ) {
if ((other.start >= this.start) &&
(other.start <= this.stop)) {
if ((other.start > this.start) &&
(other.start < this.stop)) {
return true;
}
return false;