summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhyunho <hhstark.kang@samsung.com>2019-08-29 15:59:32 +0900
committerhyunho <hhstark.kang@samsung.com>2019-08-29 15:59:32 +0900
commit5597fe5fffeaf46b3a96f46365dc8a4041b65fa4 (patch)
tree2787f3719c3497e78cb6581ae79cedf195350653
parent54dcb902fd6444e835fe5adf74acb60924a9bc91 (diff)
downloadbundle-5597fe5fffeaf46b3a96f46365dc8a4041b65fa4.tar.gz
bundle-5597fe5fffeaf46b3a96f46365dc8a4041b65fa4.tar.bz2
bundle-5597fe5fffeaf46b3a96f46365dc8a4041b65fa4.zip
Remove unused constructor
Change-Id: Id4a60d79ff1163f2f9ce4cb2b2effaa7f6dcb06c Signed-off-by: hyunho <hhstark.kang@samsung.com>
-rw-r--r--include/bundle_cpp.h6
-rw-r--r--src/bundle_cpp.cc4
2 files changed, 0 insertions, 10 deletions
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
@@ -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
*/
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() {
}