From: hyunho Date: Thu, 29 Aug 2019 06:59:32 +0000 (+0900) Subject: Remove unused constructor X-Git-Tag: submit/tizen/20190830.041902~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=5597fe5fffeaf46b3a96f46365dc8a4041b65fa4;p=platform%2Fcore%2Fbase%2Fbundle.git Remove unused constructor Change-Id: Id4a60d79ff1163f2f9ce4cb2b2effaa7f6dcb06c Signed-off-by: hyunho --- diff --git a/include/bundle_cpp.h b/include/bundle_cpp.h index 2abc522..33e9176 100644 --- a/include/bundle_cpp.h +++ b/include/bundle_cpp.h @@ -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 diff --git a/src/bundle_cpp.cc b/src/bundle_cpp.cc index 2e6f30b..2e5e6ca 100644 --- a/src/bundle_cpp.cc +++ b/src/bundle_cpp.cc @@ -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() { }