diff options
author | Michael Stahl <michael.stahl@allotropia.de> | 2021-10-06 14:10:42 +0200 |
---|---|---|
committer | Michael Stahl <michael.stahl@allotropia.de> | 2021-11-01 18:19:54 +0100 |
commit | 244a64ae7461a19383c81bc3fefebb5b40900c18 (patch) | |
tree | 4d69ee797e438c2836688222be73ec6710da11a0 | |
parent | e668c2a88f0edb41169a76d9c6203227cd436559 (diff) |
ucb: webdav-curl: callcatcher: remove unused methods
[ replicate commit af6752b88e34df05449a4237d9be0fac509c227c ]
Change-Id: I608798e95297642fe768d7ad66d524f084fa83d0
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/123172
Tested-by: Michael Stahl <michael.stahl@allotropia.de>
Reviewed-by: Michael Stahl <michael.stahl@allotropia.de>
-rw-r--r-- | ucb/source/ucp/webdav-curl/ContentProperties.cxx | 21 | ||||
-rw-r--r-- | ucb/source/ucp/webdav-curl/ContentProperties.hxx | 6 |
2 files changed, 0 insertions, 27 deletions
diff --git a/ucb/source/ucp/webdav-curl/ContentProperties.cxx b/ucb/source/ucp/webdav-curl/ContentProperties.cxx index 362af841c7be..53e4593fc342 100644 --- a/ucb/source/ucp/webdav-curl/ContentProperties.cxx +++ b/ucb/source/ucp/webdav-curl/ContentProperties.cxx @@ -370,27 +370,6 @@ void ContentProperties::addProperties( } } - -void ContentProperties::addProperties( const ContentProperties & rProps ) -{ - for ( const auto& rProp : *rProps.m_xProps ) - { - addProperty( - rProp.first, rProp.second.value(), rProp.second.isCaseSensitive() ); - } -} - - -void ContentProperties::addProperties( - const std::vector< DAVPropertyValue > & rProps ) -{ - for ( const auto& rProp : rProps ) - { - addProperty( rProp ); - } -} - - void ContentProperties::addProperty( const DAVPropertyValue & rProp ) { addProperty( rProp.Name, rProp.Value, rProp.IsCaseSensitive ); diff --git a/ucb/source/ucp/webdav-curl/ContentProperties.hxx b/ucb/source/ucp/webdav-curl/ContentProperties.hxx index 0f1bc0a52c7e..a4588f5214f6 100644 --- a/ucb/source/ucp/webdav-curl/ContentProperties.hxx +++ b/ucb/source/ucp/webdav-curl/ContentProperties.hxx @@ -114,12 +114,6 @@ public: void addProperties( const std::vector< OUString > & rProps, const ContentProperties & rContentProps ); - // overwrites probably existing entries. - void addProperties( const ContentProperties & rProps ); - - // overwrites probably existing entries. - void addProperties( const std::vector< DAVPropertyValue > & rProps ); - // overwrites probably existing entry. void addProperty( const OUString & rName, const css::uno::Any & rValue, |