From: Junghyun Yeon Date: Thu, 31 Oct 2019 07:49:52 +0000 (+0900) Subject: Move implementation of virtual functions which does nothing X-Git-Tag: submit/tizen/20191112.050420~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9186b77490c872c4fd3ce0f0b203e093b0921e05;p=platform%2Fcore%2Fappfw%2Ftpk-backend.git Move implementation of virtual functions which does nothing Change-Id: I693a5cebff4b31ca013b765185f810837e36382b Signed-off-by: Junghyun Yeon --- diff --git a/src/tpk/step/pkgmgr/step_manifest_adjustment.cc b/src/tpk/step/pkgmgr/step_manifest_adjustment.cc index b294429..327e503 100644 --- a/src/tpk/step/pkgmgr/step_manifest_adjustment.cc +++ b/src/tpk/step/pkgmgr/step_manifest_adjustment.cc @@ -175,13 +175,5 @@ common_installer::Step::Status StepManifestAdjustment::process() { return Step::Status::OK; } -common_installer::Step::Status StepManifestAdjustment::clean() { - return Step::Status::OK; -} - -common_installer::Step::Status StepManifestAdjustment::undo() { - return Step::Status::OK; -} - } // namespace pkgmgr } // namespace tpk diff --git a/src/tpk/step/pkgmgr/step_manifest_adjustment.h b/src/tpk/step/pkgmgr/step_manifest_adjustment.h index 12cbd00..9ec583f 100644 --- a/src/tpk/step/pkgmgr/step_manifest_adjustment.h +++ b/src/tpk/step/pkgmgr/step_manifest_adjustment.h @@ -19,8 +19,8 @@ class StepManifestAdjustment : public common_installer::Step { using Step::Step; Status process() override; - Status clean() override; - Status undo() override; + Status clean() override { return Status::OK; } + Status undo() override { return Status::OK; } Status precheck() override; private: