Git: Remove unnecessary destructor

Change-Id: Ib4041924e1544d1ec2c5837c62c23554c6be0e91
Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
Tobias Hunger
2015-03-03 11:19:24 +01:00
parent 518a44a780
commit bdbe119dbe
2 changed files with 0 additions and 5 deletions

View File

@@ -672,10 +672,6 @@ GitClient::GitClient(GitSettings *settings) :
.arg(QCoreApplication::applicationPid());
}
GitClient::~GitClient()
{
}
QString GitClient::findRepositoryForDirectory(const QString &dir) const
{
if (dir.isEmpty() || dir.endsWith(QLatin1String("/.git"))

View File

@@ -136,7 +136,6 @@ public:
static const char *stashNamePrefix;
explicit GitClient(GitSettings *settings);
~GitClient();
Utils::FileName gitExecutable(bool *ok = 0, QString *errorMessage = 0) const;
unsigned gitVersion(QString *errorMessage = 0) const;