| 118 | } |
| 119 | |
| 120 | void |
| 121 | Client::unlock(const Targets & targets, bool force) |
| 122 | { |
| 123 | Pool pool; |
| 124 | |
| 125 | svn_error_t * error = |
| 126 | svn_client_unlock(const_cast<apr_array_header_t*>(targets.array(pool)), |
| 127 | force, |
| 128 | *m_context, |
| 129 | pool); |
| 130 | if (error != nullptr) |
| 131 | throw ClientException(error); |
| 132 | } |
| 133 | |
| 134 | void |
| 135 | Client::revert(const Targets & targets, |
no test coverage detected