[Libreoffice-commits] core.git: ucb/source
Libreoffice Gerrit user
logerrit at kemper.freedesktop.org
Tue Sep 4 12:09:33 UTC 2018
ucb/source/ucp/webdav/PropertyMap.hxx | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
New commits:
commit 22d57d223bd491495fbeff952a71da4c94745813
Author: Stephan Bergmann <sbergman at redhat.com>
AuthorDate: Tue Sep 4 09:10:59 2018 +0200
Commit: Stephan Bergmann <sbergman at redhat.com>
CommitDate: Tue Sep 4 14:09:12 2018 +0200
loplugin:simplifybool (--with-webdav=serf)
Change-Id: I473854cfd45a99879b8965225d3058af08061567
Reviewed-on: https://gerrit.libreoffice.org/59962
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman at redhat.com>
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;
}
};
More information about the Libreoffice-commits
mailing list