aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJarek Kobus <[email protected]>2025-07-02 13:48:49 +0200
committerJarek Kobus <[email protected]>2025-07-02 12:18:26 +0000
commit9538bef6506d22161d8d6326349bdc401e73824e (patch)
tree7ebae0a5bc5a8aa1f6a7c2afbc8f5a507b3b70b9
parent72815c6515f20b02bc5a689cbc4cfc5dd1d5dc61 (diff)
Vcs: Remove unused variable
Change-Id: I99b0357ea4f7517d1c0fd0203bccd423354a9c84 Reviewed-by: AndrĂ© Hartmann <[email protected]>
-rw-r--r--src/plugins/gitlab/gitlabclonedialog.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/plugins/gitlab/gitlabclonedialog.cpp b/src/plugins/gitlab/gitlabclonedialog.cpp
index 6c37b9846e9..585b8ece48e 100644
--- a/src/plugins/gitlab/gitlabclonedialog.cpp
+++ b/src/plugins/gitlab/gitlabclonedialog.cpp
@@ -139,7 +139,6 @@ void GitLabCloneDialog::cloneProject()
m_command = vc->createInitialCheckoutCommand({m_repositoryCB->currentText(),
m_pathChooser->absoluteFilePath(),
m_directoryLE->text(), extraArgs});
- const FilePath workingDirectory = m_pathChooser->absoluteFilePath();
m_command->addFlags(RunFlags::ProgressiveOutput);
connect(m_command, &VcsCommand::stdOutText, this, [this](const QString &text) {
m_cloneOutput->appendPlainText(text);