forked from qt-creator/qt-creator
Remove reimplementation of AbstractProcessStep::doRun()
Remove those reimplementations that call parent implementation and don't do anything more. Change-Id: Ib74dd33b45c0027280de57b957c2f8f642f82d23 Reviewed-by: hjk <hjk@qt.io> Reviewed-by: <github-actions-qt-creator@cristianadam.eu>
This commit is contained in:
@@ -79,7 +79,6 @@ private:
|
|||||||
|
|
||||||
bool init() final;
|
bool init() final;
|
||||||
void setupOutputFormatter(Utils::OutputFormatter *formatter) final;
|
void setupOutputFormatter(Utils::OutputFormatter *formatter) final;
|
||||||
void doRun() final;
|
|
||||||
bool fromMap(const QVariantMap &map) final;
|
bool fromMap(const QVariantMap &map) final;
|
||||||
QVariantMap toMap() const final;
|
QVariantMap toMap() const final;
|
||||||
|
|
||||||
@@ -249,11 +248,6 @@ FilePath IosBuildStep::buildCommand() const
|
|||||||
return "xcodebuild"; // add path?
|
return "xcodebuild"; // add path?
|
||||||
}
|
}
|
||||||
|
|
||||||
void IosBuildStep::doRun()
|
|
||||||
{
|
|
||||||
AbstractProcessStep::doRun();
|
|
||||||
}
|
|
||||||
|
|
||||||
void IosBuildStep::setBaseArguments(const QStringList &args)
|
void IosBuildStep::setBaseArguments(const QStringList &args)
|
||||||
{
|
{
|
||||||
m_baseBuildArguments = args;
|
m_baseBuildArguments = args;
|
||||||
|
@@ -185,11 +185,6 @@ QString NinjaBuildStep::defaultBuildTarget() const
|
|||||||
return {Constants::Targets::all};
|
return {Constants::Targets::all};
|
||||||
}
|
}
|
||||||
|
|
||||||
void NinjaBuildStep::doRun()
|
|
||||||
{
|
|
||||||
AbstractProcessStep::doRun();
|
|
||||||
}
|
|
||||||
|
|
||||||
void NinjaBuildStep::setupOutputFormatter(Utils::OutputFormatter *formatter)
|
void NinjaBuildStep::setupOutputFormatter(Utils::OutputFormatter *formatter)
|
||||||
{
|
{
|
||||||
auto mesonOutputParser = new MesonOutputParser;
|
auto mesonOutputParser = new MesonOutputParser;
|
||||||
|
@@ -52,7 +52,6 @@ public:
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
void update(bool parsingSuccessful);
|
void update(bool parsingSuccessful);
|
||||||
void doRun() override;
|
|
||||||
void setupOutputFormatter(Utils::OutputFormatter *formatter) override;
|
void setupOutputFormatter(Utils::OutputFormatter *formatter) override;
|
||||||
QString defaultBuildTarget() const;
|
QString defaultBuildTarget() const;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user