From eea6d3951b66f85df60574e10f19a81bfd7529cc Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 17 Aug 2017 17:21:53 +0200 Subject: loplugin:unnecessaryparen look for statements like return (function()); Change-Id: I906cf2183489f87225b99b987caca67e39b26cc3 Reviewed-on: https://gerrit.libreoffice.org/41260 Reviewed-by: Noel Grandin Tested-by: Noel Grandin --- ucb/source/ucp/webdav-neon/ContentProperties.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ucb') diff --git a/ucb/source/ucp/webdav-neon/ContentProperties.cxx b/ucb/source/ucp/webdav-neon/ContentProperties.cxx index 551d91080b93..a010a85623c3 100644 --- a/ucb/source/ucp/webdav-neon/ContentProperties.cxx +++ b/ucb/source/ucp/webdav-neon/ContentProperties.cxx @@ -353,7 +353,7 @@ bool ContentProperties::containsAllNames( } } - return ( rNamesNotContained.empty() ); + return rNamesNotContained.empty(); } -- cgit