summaryrefslogtreecommitdiff
path: root/ucb/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-02-17 11:44:16 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-02-17 14:51:23 +0100
commit2cbf83e20889351e2d2a6e29e5c7d9250af58647 (patch)
tree9cea9bf90ff8bfcf79e7d2b827fdea9bdfdf8ad1 /ucb/source
parent51648c8de8dc060abc8dff1af105acfccadab77d (diff)
loplugin:unusedmethods
Change-Id: I58c60262ca543bafb4db4433dbb98b195f7571ea Reviewed-on: https://gerrit.libreoffice.org/c/core/+/130063 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'ucb/source')
-rw-r--r--ucb/source/ucp/webdav-curl/DAVTypes.hxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-curl/DAVTypes.hxx b/ucb/source/ucp/webdav-curl/DAVTypes.hxx
index 7bf8bc37624e..ac43becc79c5 100644
--- a/ucb/source/ucp/webdav-curl/DAVTypes.hxx
+++ b/ucb/source/ucp/webdav-curl/DAVTypes.hxx
@@ -111,7 +111,6 @@ namespace http_dav_ucp
void setStaleTime( const sal_uInt32 nStaleTime ) { m_nStaleTime = nStaleTime; };
sal_uInt32 getRequestedTimeLife() const { return m_nRequestedTimeLife; };
- void setRequestedTimeLife( const sal_uInt32 nRequestedTimeLife ) { m_nRequestedTimeLife = nRequestedTimeLife; };
const OUString & getURL() const { return m_sURL; };
void setURL( const OUString & sURL ) { m_sURL = sURL; };
@@ -120,7 +119,6 @@ namespace http_dav_ucp
void setRedirectedURL( const OUString & sRedirectedURL ) { m_sRedirectedURL = sRedirectedURL; };
void setAllowedMethods( const OUString & aAllowedMethods ) { m_aAllowedMethods = aAllowedMethods; } ;
- const OUString & getAllowedMethods() const { return m_aAllowedMethods; } ;
bool isLockAllowed() const { return ( m_aAllowedMethods.indexOf( "LOCK" ) != -1 ); };
void setLocked( bool locked = true ) { m_isLocked = locked; } ;