summaryrefslogtreecommitdiff
path: root/ucb
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2018-09-04 09:10:59 +0200
committerStephan Bergmann <sbergman@redhat.com>2018-09-04 14:09:12 +0200
commit22d57d223bd491495fbeff952a71da4c94745813 (patch)
tree97369ca583651931440bcf4b3d475e24a5f2c263 /ucb
parent7b6a65685f728c94ffd41f859a29e50b79f83abd (diff)
loplugin:simplifybool (--with-webdav=serf)
Change-Id: I473854cfd45a99879b8965225d3058af08061567 Reviewed-on: https://gerrit.libreoffice.org/59962 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'ucb')
-rw-r--r--ucb/source/ucp/webdav/PropertyMap.hxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/webdav/PropertyMap.hxx b/ucb/source/ucp/webdav/PropertyMap.hxx
index 7438566f732f..ef5693d760b3 100644
--- a/ucb/source/ucp/webdav/PropertyMap.hxx
+++ b/ucb/source/ucp/webdav/PropertyMap.hxx
@@ -31,7 +31,7 @@ struct equalPropertyName
bool operator()( const css::beans::Property & p1,
const css::beans::Property & p2 ) const
{
- return !!( p1.Name == p2.Name );
+ return p1.Name == p2.Name;
}
};