Move implementation of virtual functions which does nothing 28/216728/1
authorJunghyun Yeon <jungh.yeon@samsung.com>
Thu, 31 Oct 2019 07:49:52 +0000 (16:49 +0900)
committerJunghyun Yeon <jungh.yeon@samsung.com>
Thu, 31 Oct 2019 07:49:52 +0000 (16:49 +0900)
Change-Id: I693a5cebff4b31ca013b765185f810837e36382b
Signed-off-by: Junghyun Yeon <jungh.yeon@samsung.com>
src/tpk/step/pkgmgr/step_manifest_adjustment.cc
src/tpk/step/pkgmgr/step_manifest_adjustment.h

index b29442979f728f7ee3c84596025188586cdd4810..327e503cdff12eac11a974c1e1cd5d7918ec2c01 100644 (file)
@@ -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
index 12cbd0093403fbae9bcfe98a19060338c41219a5..9ec583fe0f1b53f443cc323e0dadfaaf7ff05f3a 100644 (file)
@@ -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: