RsyncDeployStep: Get rid of unused methods

Change-Id: If597b7cca7a5913c2c9bab663ddd4fcd098deb59
Reviewed-by: Christian Kandeler <christian.kandeler@qt.io>
Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org>
This commit is contained in:
Jarek Kobus
2022-05-16 22:36:04 +02:00
parent edd9ddcd75
commit 29a62ff35c
2 changed files with 0 additions and 32 deletions

View File

@@ -28,18 +28,8 @@
#include "abstractremotelinuxdeploystep.h"
#include "remotelinux_export.h"
namespace QSsh { class SshConnection; }
namespace RemoteLinux {
class RsyncCommandLine
{
public:
RsyncCommandLine(const QStringList &o, const QString &h) : options(o), remoteHostSpec(h) {}
const QStringList options;
const QString remoteHostSpec;
};
class REMOTELINUX_EXPORT RsyncDeployStep : public AbstractRemoteLinuxDeployStep
{
Q_OBJECT
@@ -50,10 +40,6 @@ public:
static Utils::Id stepId();
static QString displayName();
static QString defaultFlags();
static RsyncCommandLine rsyncCommand(const QSsh::SshConnection &sshConnection,
const QString &flags);
};
} // namespace RemoteLinux