commit | f70cd4f9dd2145f1e99f30a6db8d5a11d16747fb | [log] [tgz] |
---|---|---|
author | donald.g.dunne <donald.g.dunne@boeing.com> | Thu Jul 29 08:47:50 2021 -0700 |
committer | Ryan D. Brooks <ryan.d.brooks@boeing.com> | Thu Jul 29 08:47:50 2021 -0700 |
tree | 59846d320cc38641330085800a9376cae56a400a | |
parent | cbd7575f4bb69745751aff8c78bdfbd2b94b2c14 [diff] |
bug[TW19447]: Fix sibling operation creating when 0 estimate Change-Id: Ia2c435e813eaa686334e58dcb8277cf9fb254630
diff --git a/plugins/org.eclipse.osee.ats.core/src/org/eclipse/osee/ats/core/workflow/cr/CreateSiblingOffTaskEstOperation.java b/plugins/org.eclipse.osee.ats.core/src/org/eclipse/osee/ats/core/workflow/cr/CreateSiblingOffTaskEstOperation.java index a44d5b3..3512429 100644 --- a/plugins/org.eclipse.osee.ats.core/src/org/eclipse/osee/ats/core/workflow/cr/CreateSiblingOffTaskEstOperation.java +++ b/plugins/org.eclipse.osee.ats.core/src/org/eclipse/osee/ats/core/workflow/cr/CreateSiblingOffTaskEstOperation.java
@@ -94,6 +94,9 @@ rd.logf("Workflow exists for task %s; skipping\n", task.toStringWithId()); teds.remove(ted); } + } else { + rd.logf("Estimate 0 for task %s; skipping\n", task.toStringWithId()); + teds.remove(ted); } } }