diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-05 15:57:37 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-09-06 09:04:17 +0200 |
commit | 03d8a9209140a68d29b7441b3588f022cfcaee7c (patch) | |
tree | 15da3ccac0bcd9913b7528535c7381eb34e1402b /ucb | |
parent | f547cf17a179ebd7de5c2b4dd2d00d0027a25429 (diff) |
clang-tidy:readability-redundant-member-init
Change-Id: I8590d67f064dd74da42c0e3bf543f2aadbd2b893
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/121693
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb')
-rw-r--r-- | ucb/source/ucp/cmis/cmis_repo_content.cxx | 1 | ||||
-rw-r--r-- | ucb/source/ucp/ext/ucpext_content.cxx | 4 | ||||
-rw-r--r-- | ucb/source/ucp/webdav-neon/DAVTypes.cxx | 6 | ||||
-rw-r--r-- | ucb/source/ucp/webdav-neon/PropfindCache.cxx | 7 |
4 files changed, 3 insertions, 15 deletions
diff --git a/ucb/source/ucp/cmis/cmis_repo_content.cxx b/ucb/source/ucp/cmis/cmis_repo_content.cxx index 33ded7b33c76..fc5472bafce2 100644 --- a/ucb/source/ucp/cmis/cmis_repo_content.cxx +++ b/ucb/source/ucp/cmis/cmis_repo_content.cxx @@ -54,7 +54,6 @@ namespace cmis : ContentImplHelper( rxContext, pProvider, Identifier ), m_pProvider( pProvider ), m_aURL( Identifier->getContentIdentifier( ) ), - m_sRepositoryId( ), m_aRepositories( aRepos ) { // Split the URL into bits diff --git a/ucb/source/ucp/ext/ucpext_content.cxx b/ucb/source/ucp/ext/ucpext_content.cxx index b63d02dfd101..0209fa4fdffa 100644 --- a/ucb/source/ucp/ext/ucpext_content.cxx +++ b/ucb/source/ucp/ext/ucpext_content.cxx @@ -110,10 +110,6 @@ namespace ucb::ucp::ext const Reference< XContentIdentifier >& i_rIdentifier ) :Content_Base( rxContext, i_pProvider, i_rIdentifier ) ,m_eExtContentType( E_UNKNOWN ) - ,m_aIsFolder() - ,m_aContentType() - ,m_sExtensionId() - ,m_sPathIntoExtension() { const OUString sURL( getIdentifier()->getContentIdentifier() ); if ( denotesRootContent( sURL ) ) diff --git a/ucb/source/ucp/webdav-neon/DAVTypes.cxx b/ucb/source/ucp/webdav-neon/DAVTypes.cxx index c7c6ff356f7f..e39f5b2cf946 100644 --- a/ucb/source/ucp/webdav-neon/DAVTypes.cxx +++ b/ucb/source/ucp/webdav-neon/DAVTypes.cxx @@ -25,13 +25,9 @@ DAVOptions::DAVOptions() : m_isClass3( false ), m_isHeadAllowed( true ), m_isLocked( false ), - m_aAllowedMethods(), m_nStaleTime( 0 ), m_nRequestedTimeLife( 0 ), - m_sURL(), - m_sRedirectedURL(), - m_nHttpResponseStatusCode( 0 ), - m_sHttpResponseStatusText() + m_nHttpResponseStatusCode( 0 ) { } diff --git a/ucb/source/ucp/webdav-neon/PropfindCache.cxx b/ucb/source/ucp/webdav-neon/PropfindCache.cxx index 63cdff370c40..951f4a201790 100644 --- a/ucb/source/ucp/webdav-neon/PropfindCache.cxx +++ b/ucb/source/ucp/webdav-neon/PropfindCache.cxx @@ -16,16 +16,13 @@ namespace webdav_ucp // PropertyNames implementation PropertyNames::PropertyNames() : - m_nStaleTime( 0 ), - m_sURL(), - m_aPropertiesNames() + m_nStaleTime( 0 ) { } PropertyNames::PropertyNames( const OUString& rURL ) : m_nStaleTime( 0 ), - m_sURL( rURL ), - m_aPropertiesNames() + m_sURL( rURL ) { } |