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 b294429..327e503 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 12cbd00..9ec583f 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: