summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-02-21 16:03:13 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-02-22 07:39:44 +0100
commit131cc96a890b8988703532d09773bb0bde20ee8a (patch)
treee89c868180690503c9e8b0de1f60f9686dd2fa61 /ucb
parent10134a2f8b604c934676e9e622d8123862a0b941 (diff)
loplugin:unusedfields in ucb,ucbhelper
Change-Id: Id15c92e54669bd5f26adfe0d0b9dda0e8894ccf3 Reviewed-on: https://gerrit.libreoffice.org/68161 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/cacher/cachedcontentresultsetstub.cxx8
-rw-r--r--ucb/source/cacher/cachedcontentresultsetstub.hxx5
-rw-r--r--ucb/source/ucp/hierarchy/hierarchyuri.cxx2
-rw-r--r--ucb/source/ucp/hierarchy/hierarchyuri.hxx1
-rw-r--r--ucb/source/ucp/tdoc/tdoc_uri.cxx9
-rw-r--r--ucb/source/ucp/tdoc/tdoc_uri.hxx2
6 files changed, 4 insertions, 23 deletions
diff --git a/ucb/source/cacher/cachedcontentresultsetstub.cxx b/ucb/source/cacher/cachedcontentresultsetstub.cxx
index b9085f7ac323..a648beac5e76 100644
--- a/ucb/source/cacher/cachedcontentresultsetstub.cxx
+++ b/ucb/source/cacher/cachedcontentresultsetstub.cxx
@@ -497,10 +497,8 @@ FetchResult SAL_CALL CachedContentResultSetStub
// class CachedContentResultSetStubFactory
-CachedContentResultSetStubFactory::CachedContentResultSetStubFactory(
- const Reference< XMultiServiceFactory > & rSMgr )
+CachedContentResultSetStubFactory::CachedContentResultSetStubFactory()
{
- m_xSMgr = rSMgr;
}
CachedContentResultSetStubFactory::~CachedContentResultSetStubFactory()
@@ -546,10 +544,10 @@ XSERVICEINFO_COMMOM_IMPL( CachedContentResultSetStubFactory,
OUString( "com.sun.star.comp.ucb.CachedContentResultSetStubFactory" ) )
/// @throws css::uno::Exception
static css::uno::Reference< css::uno::XInterface >
-CachedContentResultSetStubFactory_CreateInstance( const css::uno::Reference< css::lang::XMultiServiceFactory> & rSMgr )
+CachedContentResultSetStubFactory_CreateInstance( const css::uno::Reference< css::lang::XMultiServiceFactory> & )
{
css::lang::XServiceInfo* pX =
- static_cast<css::lang::XServiceInfo*>(new CachedContentResultSetStubFactory( rSMgr ));
+ static_cast<css::lang::XServiceInfo*>(new CachedContentResultSetStubFactory);
return css::uno::Reference< css::uno::XInterface >::query( pX );
}
css::uno::Sequence< OUString >
diff --git a/ucb/source/cacher/cachedcontentresultsetstub.hxx b/ucb/source/cacher/cachedcontentresultsetstub.hxx
index c4ba74410680..5a4182a63efd 100644
--- a/ucb/source/cacher/cachedcontentresultsetstub.hxx
+++ b/ucb/source/cacher/cachedcontentresultsetstub.hxx
@@ -146,12 +146,9 @@ class CachedContentResultSetStubFactory final
, public css::lang::XServiceInfo
, public css::ucb::XCachedContentResultSetStubFactory
{
- css::uno::Reference< css::lang::XMultiServiceFactory > m_xSMgr;
-
public:
- CachedContentResultSetStubFactory(
- const css::uno::Reference< css::lang::XMultiServiceFactory > & rSMgr);
+ CachedContentResultSetStubFactory();
virtual ~CachedContentResultSetStubFactory() override;
diff --git a/ucb/source/ucp/hierarchy/hierarchyuri.cxx b/ucb/source/ucp/hierarchy/hierarchyuri.cxx
index 8b7402d22dac..6bd2fc5952f1 100644
--- a/ucb/source/ucp/hierarchy/hierarchyuri.cxx
+++ b/ucb/source/ucp/hierarchy/hierarchyuri.cxx
@@ -46,7 +46,6 @@ void HierarchyUri::init() const
// Note: Maybe it's a re-init, setUri only resets m_aPath!
m_aService.clear();
m_aParentUri.clear();
- m_aName.clear();
// URI must match at least: <sheme>:
if ( m_aUri.getLength() < HIERARCHY_URL_SCHEME_LENGTH + 1 )
@@ -165,7 +164,6 @@ void HierarchyUri::init() const
( nLastSlash != m_aUri.getLength() - 1 ) ) // root
{
m_aParentUri = m_aUri.copy( 0, nLastSlash );
- m_aName = m_aUri.copy( nLastSlash + 1 );
}
// success
diff --git a/ucb/source/ucp/hierarchy/hierarchyuri.hxx b/ucb/source/ucp/hierarchy/hierarchyuri.hxx
index 4e67db7751ed..12973a9c3326 100644
--- a/ucb/source/ucp/hierarchy/hierarchyuri.hxx
+++ b/ucb/source/ucp/hierarchy/hierarchyuri.hxx
@@ -35,7 +35,6 @@ class HierarchyUri
mutable OUString m_aParentUri;
mutable OUString m_aService;
mutable OUString m_aPath;
- mutable OUString m_aName;
mutable bool m_bValid;
private:
diff --git a/ucb/source/ucp/tdoc/tdoc_uri.cxx b/ucb/source/ucp/tdoc/tdoc_uri.cxx
index 126ef346b202..4c65da63b2b3 100644
--- a/ucb/source/ucp/tdoc/tdoc_uri.cxx
+++ b/ucb/source/ucp/tdoc/tdoc_uri.cxx
@@ -105,15 +105,6 @@ void Uri::init() const
m_aDocId = m_aPath.copy( 1, nSlash - 1 );
}
- if ( !m_aDocId.isEmpty() )
- {
- sal_Int32 nSlash = m_aPath.indexOf( '/', 1 );
- if ( nSlash != - 1 )
- m_aInternalPath = m_aPath.copy( nSlash );
- else
- m_aInternalPath = "/";
- }
-
m_eState = VALID;
}
diff --git a/ucb/source/ucp/tdoc/tdoc_uri.hxx b/ucb/source/ucp/tdoc/tdoc_uri.hxx
index dad3db6d5667..15e51e6e8d36 100644
--- a/ucb/source/ucp/tdoc/tdoc_uri.hxx
+++ b/ucb/source/ucp/tdoc/tdoc_uri.hxx
@@ -37,7 +37,6 @@ class Uri
mutable OUString m_aParentUri;
mutable OUString m_aPath;
mutable OUString m_aDocId;
- mutable OUString m_aInternalPath;
mutable OUString m_aName;
mutable OUString m_aDecodedName;
mutable State m_eState;
@@ -86,7 +85,6 @@ inline void Uri::setUri( const OUString & rUri )
m_aUri = rUri;
m_aParentUri.clear();
m_aDocId.clear();
- m_aInternalPath.clear();
m_aPath.clear();
m_aName.clear();
m_aDecodedName.clear();