ucb/source/ucp/webdav-curl/ContentProperties.cxx | 21 --------------------- ucb/source/ucp/webdav-curl/ContentProperties.hxx | 6 ------ 2 files changed, 27 deletions(-)
New commits: commit 244a64ae7461a19383c81bc3fefebb5b40900c18 Author: Michael Stahl <[email protected]> AuthorDate: Wed Oct 6 14:10:42 2021 +0200 Commit: Michael Stahl <[email protected]> CommitDate: Mon Nov 1 18:19:54 2021 +0100 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 <[email protected]> Reviewed-by: Michael Stahl <[email protected]> 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,
