@private @method prepareConfirm @param {FileInfo} info @return {Promise}
(info)
| 1597 | @return {Promise} |
| 1598 | */ |
| 1599 | function prepareConfirm(info) { |
| 1600 | return info.checkForConflict().then((resolution) => { |
| 1601 | info.resolution = resolution; |
| 1602 | return info; |
| 1603 | }); |
| 1604 | } |
| 1605 | |
| 1606 | /** |
| 1607 | @private |
nothing calls this directly
no test coverage detected
searching dependent graphs…