summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2021-02-06 21:49:28 +0100
committerJulien Nabet <serval2412@yahoo.fr>2021-02-07 14:32:54 +0100
commit2e91522a5ce62a8489c75bd948f1dc68ddf1a56f (patch)
tree2f77c76262c2bcfbe5b372871997c0036f62f808 /ucb
parent44b914b1e2616ca8f70e896e653a46ca93610234 (diff)
Remove unneeded breaks
Extending this: https://gerrit.libreoffice.org/c/core/+/110512 Change-Id: I9e7cf757a346d603d0acb818be0c9bc488c8d5c6 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/110516 Tested-by: Jenkins Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav-neon/webdavcontent.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/ucb/source/ucp/webdav-neon/webdavcontent.cxx b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
index a874390ceb33..e73547af427b 100644
--- a/ucb/source/ucp/webdav-neon/webdavcontent.cxx
+++ b/ucb/source/ucp/webdav-neon/webdavcontent.cxx
@@ -3290,7 +3290,6 @@ void Content::lock(
// Detailed specification in:
// <http://tools.ietf.org/html/rfc4918#section-7.3>
return;
- break;
default:
//fallthrough
;
@@ -3300,7 +3299,6 @@ void Content::lock(
// we already hold the lock and it is in our internal lockstore
// just return as if the lock was successful
return;
- break;
default:
//fallthrough
;
@@ -3359,7 +3357,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() )
@@ -3371,7 +3368,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
;