| 291 | } |
| 292 | |
| 293 | KDevelop::VcsJob* KDevSvnPlugin::import(const QString & commitMessage, const QUrl &sourceDirectory, const KDevelop::VcsLocation & destinationRepository) |
| 294 | { |
| 295 | auto* job = new SvnImportJob(this); |
| 296 | job->setMapping(sourceDirectory, destinationRepository); |
| 297 | job->setMessage(commitMessage); |
| 298 | return job; |
| 299 | } |
| 300 | |
| 301 | KDevelop::VcsJob* KDevSvnPlugin::createWorkingCopy(const KDevelop::VcsLocation & sourceRepository, const QUrl &destinationDirectory, KDevelop::IBasicVersionControl::RecursionMode recursion) |
| 302 | { |
no test coverage detected