diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2023-12-31 12:18:26 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2023-12-31 13:52:06 +0100 |
commit | 7ae0f286874abba90fc9b4a395d949b4fab14c2e (patch) | |
tree | efb1d388a81f02c5282a54f5f89e00f5b1ac2448 /ucb/source/ucp/webdav-curl/ContentProperties.cxx | |
parent | ec4ce4362a8d33f5608f62a11e1ed84b8dc448a4 (diff) |
Replace "size() == 0 with empty()" (ucb)
Change-Id: I82a97841d4d02d6d4388be17f5b3c87bbf0c325f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161470
Tested-by: Jenkins
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'ucb/source/ucp/webdav-curl/ContentProperties.cxx')
-rw-r--r-- | ucb/source/ucp/webdav-curl/ContentProperties.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav-curl/ContentProperties.cxx b/ucb/source/ucp/webdav-curl/ContentProperties.cxx index 5794282028f6..d67929727601 100644 --- a/ucb/source/ucp/webdav-curl/ContentProperties.cxx +++ b/ucb/source/ucp/webdav-curl/ContentProperties.cxx @@ -339,7 +339,7 @@ bool ContentProperties::containsAllNames( } } - return ( rNamesNotContained.size() == 0 ); + return rNamesNotContained.empty(); } |