summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-11-24 12:13:16 +0100
committerJulien Nabet <serval2412@yahoo.fr>2021-11-24 21:34:30 +0100
commite6f75af74c7f35feb8a22959a2f876af7f385ca2 (patch)
tree7d33aace54c58748247a2e60f42d849488f79190 /ucb
parentae6b3cf568157ec37574fdc8491e5d385a88cd94 (diff)
Remove break; after return
Change-Id: I0690bcf0740842abde7268d99ab791163262945f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/125766 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav-curl/webdavcontent.cxx2
1 files changed, 0 insertions, 2 deletions
diff --git a/ucb/source/ucp/webdav-curl/webdavcontent.cxx b/ucb/source/ucp/webdav-curl/webdavcontent.cxx
index f74bf01b5125..8bf19a582693 100644
--- a/ucb/source/ucp/webdav-curl/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-curl/webdavcontent.cxx
@@ -3399,7 +3399,6 @@ void Content::unlock(
// acting as WebDAV and having lock/unlock enabled only
// for authorized user.
return;
- break;
case DAVException::DAV_HTTP_ERROR:
//grab the error code
switch( e.getStatus() )
@@ -3411,7 +3410,6 @@ void Content::unlock(
SAL_WARN( "ucb.ucp.webdav", "unlock() DAVException (SC_NOT_IMPLEMENTED or SC_METHOD_NOT_ALLOWED) - URL: <"
<< m_xIdentifier->getContentIdentifier() << ">, DAV ExceptionCode: " << e.getError() << ", HTTP error: " << e.getStatus() );
return;
- break;
default:
//fallthrough
;