Subversion: Remove FullySynchronously flag from vcsMove()

This flag is no-op since NoFullySync isn't passed
and we are always running vcsMove() from UI thread,
so it will run fullySynchronous anyway.
See VcsCommandPrivate::isFullySynchronous() condition.

Change-Id: I257cd925c08e7b2406f32889e1086cc36a0473dc
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Orgad Shaneh <orgads@gmail.com>
This commit is contained in:
Jarek Kobus
2022-10-05 09:48:03 +02:00
parent 772d3d7c79
commit 3e69ea863f

View File

@@ -1084,8 +1084,7 @@ bool SubversionPluginPrivate::vcsMove(const FilePath &workingDir, const QString
args << SubversionClient::addAuthenticationOptions(m_settings);
args << QDir::toNativeSeparators(SubversionClient::escapeFile(from))
<< QDir::toNativeSeparators(SubversionClient::escapeFile(to));
const auto response = runSvn(workingDir, args,
VcsCommand::ShowStdOut | VcsCommand::FullySynchronously);
const auto response = runSvn(workingDir, args, VcsCommand::ShowStdOut);
return !response.error;
}