summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/hierarchy
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2017-07-05 15:29:30 +0200
committerStephan Bergmann <sbergman@redhat.com>2017-07-05 15:29:30 +0200
commit777fbce9a3fb6924b9481a05130838cb5ffe2bb0 (patch)
treeaa8fa0d1477c326b7f47423f3a2c0345ce9b95af /ucb/source/ucp/hierarchy
parent81021f04a8972dd1dc2e3e1510764f2dd83c0585 (diff)
loplugin:unnecessaryparen
Change-Id: Id1cec62e84c3ddfe479c0e77212bc87e64c00aa6
Diffstat (limited to 'ucb/source/ucp/hierarchy')
-rw-r--r--ucb/source/ucp/hierarchy/hierarchyuri.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/hierarchy/hierarchyuri.cxx b/ucb/source/ucp/hierarchy/hierarchyuri.cxx
index f7959606b84b..ec381db8c1cf 100644
--- a/ucb/source/ucp/hierarchy/hierarchyuri.cxx
+++ b/ucb/source/ucp/hierarchy/hierarchyuri.cxx
@@ -49,7 +49,7 @@ void HierarchyUri::init() const
m_aName.clear();
// URI must match at least: <sheme>:
- if ( ( m_aUri.getLength() < HIERARCHY_URL_SCHEME_LENGTH + 1 ) )
+ if ( m_aUri.getLength() < HIERARCHY_URL_SCHEME_LENGTH + 1 )
{
// error, but remember that we did a init().
m_aPath = "/";