Signature
| Signature | setManuallyAdjust() |
| Description |
Selects this option to manually adjust the remaining estimate value by subtracting the amount of time you specify in this field. |
| Introduced in | 2.4.0 |
Example use
issue.workLogs = workLogHelper.mergeWorkLogs(issue, replica, { worklog -> worklog.setManuallyAdjust("1h") })
// or, alternatively use groovy property setter
issue.workLogs = workLogHelper.mergeWorkLogs(issue, replica, { worklog -> worklog.manuallyAdjust = "1h" })
issue.workLogs = workLogHelper.mergeWorkLogs(issue, replica, { worklog -> worklog.setManuallyAdjust("1h") })
// or, alternatively use groovy property setter
issue.workLogs = workLogHelper.mergeWorkLogs(issue, replica, { worklog -> worklog.manuallyAdjust = "1h" })Comments
The setManuallyAdjust is a utility function that adjusts the remaining estimate value by subtracting the amount of time you specify as the parameter.