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 2abc522a8ee2a639268e764cc97daf3a4a9b0fd2..33e9176560f1a02373ee5672c6f243522c199f9a 100644 (file)
@@ -75,12 +75,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 2e6f30bca0b817b5142f58c35ce65f65d9a1b6d8..2e5e6cae24df832131ba9dad515e57305acb7f9a 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() {
 }