Remove unused constructor 96/212996/1
authorhyunho <hhstark.kang@samsung.com>
Thu, 29 Aug 2019 06:59:32 +0000 (15:59 +0900)
committerhyunho <hhstark.kang@samsung.com>
Thu, 29 Aug 2019 06:59:32 +0000 (15:59 +0900)
Change-Id: Id4a60d79ff1163f2f9ce4cb2b2effaa7f6dcb06c
Signed-off-by: hyunho <hhstark.kang@samsung.com>
include/bundle_cpp.h
src/bundle_cpp.cc

index 2abc522..33e9176 100644 (file)
@@ -76,12 +76,6 @@ class EXPORT_API Bundle final {
     KeyInfo(const bundle_keyval_t* handle,  std::string name);
 
     /**
-     * @brief Constructor.
-     * @since_tizen 5.5
-     */
-    KeyInfo();
-
-    /**
      * @brief Destructor.
      * @since_tizen 5.5
      */
index 2e6f30b..2e5e6ca 100644 (file)
@@ -91,10 +91,6 @@ Bundle::KeyInfo::KeyInfo(const bundle_keyval_t* handle, std::string name)
   : impl_(new Impl(this, handle, std::move(name))) {
 }
 
-Bundle::KeyInfo::KeyInfo()
-  : impl_(new Impl(this)) {
-}
-
 Bundle::KeyInfo::~KeyInfo() {
 }