| 1493 | } |
| 1494 | |
| 1495 | QStringList GitPlugin::getLsFiles(const QDir &directory, const QStringList &args, |
| 1496 | KDevelop::OutputJob::OutputJobVerbosity verbosity) |
| 1497 | { |
| 1498 | QScopedPointer<DVcsJob> job(lsFiles(directory, args, verbosity)); |
| 1499 | if (job->exec() && job->status() == KDevelop::VcsJob::JobSucceeded) |
| 1500 | return job->output().split(QLatin1Char('\n'), Qt::SkipEmptyParts); |
| 1501 | |
| 1502 | return QStringList(); |
| 1503 | } |
| 1504 | |
| 1505 | DVcsJob* GitPlugin::gitRevParse(const QString &repository, const QStringList &args, |
| 1506 | KDevelop::OutputJob::OutputJobVerbosity verbosity) |
nothing calls this directly
no test coverage detected