Fix namespace of StepCreateRecoveryFile 59/206959/7
authorSangyoon Jang <jeremy.jang@samsung.com>
Wed, 29 May 2019 10:05:16 +0000 (19:05 +0900)
committerSangyoon Jang <jeremy.jang@samsung.com>
Tue, 4 Jun 2019 05:39:29 +0000 (05:39 +0000)
This step should be included at "recovery" namespace.

Change-Id: Id12a75327641b3d75bdb35b5d132d3e9c436b54f
Signed-off-by: Sangyoon Jang <jeremy.jang@samsung.com>
src/common/step/recovery/step_create_recovery_file.cc
src/common/step/recovery/step_create_recovery_file.h

index 6495d65..62a2508 100644 (file)
@@ -25,7 +25,7 @@
 namespace bf = boost::filesystem;
 
 namespace common_installer {
-namespace configuration {
+namespace recovery {
 
 Step::Status StepCreateRecoveryFile::process() {
   std::string recovery_filename = context_->pkg_type.get() + "-recovery";
@@ -63,5 +63,5 @@ Step::Status StepCreateRecoveryFile::clean() {
 }
 
 
-}  // namespace configuration
+}  // namespace recovery
 }  // namespace common_installer
index b4fcdcb..b5ff833 100644 (file)
@@ -13,7 +13,7 @@
 #include "common/step/step.h"
 
 namespace common_installer {
-namespace configuration {
+namespace recovery {
 
 class StepCreateRecoveryFile : public Step {
  public:
@@ -27,7 +27,7 @@ class StepCreateRecoveryFile : public Step {
   STEP_NAME(CreateRecoveryFile)
 };
 
-}  // namespace configuration
+}  // namespace recovery
 }  // namespace common_installer
 
 #endif  // COMMON_STEP_RECOVERY_STEP_CREATE_RECOVERY_FILE_H_