diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2017-07-05 15:34:33 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2017-07-05 15:34:33 +0200 |
commit | 98a223246a91ac54991efdaa953cf6694f03c897 (patch) | |
tree | 30f4e4fc3c793c1b44905f3e142b3e0edc251bbe /ucb/source | |
parent | 8977d7e3cae3cdd119478c112322b1643cb42230 (diff) |
loplugin:unnecessaryparen
Change-Id: I4660d233e5197efc3cfe8d6d0e3abdd82523ab90
Diffstat (limited to 'ucb/source')
-rw-r--r-- | ucb/source/ucp/tdoc/tdoc_uri.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ucb/source/ucp/tdoc/tdoc_uri.cxx b/ucb/source/ucp/tdoc/tdoc_uri.cxx index 5ae5a5cec9f9..e582367b19ee 100644 --- a/ucb/source/ucp/tdoc/tdoc_uri.cxx +++ b/ucb/source/ucp/tdoc/tdoc_uri.cxx @@ -43,7 +43,7 @@ void Uri::init() const m_eState = INVALID; // Check for proper length: must be at least length of <sheme>:/ - if ( ( m_aUri.getLength() < TDOC_URL_SCHEME_LENGTH + 2 ) ) + if ( m_aUri.getLength() < TDOC_URL_SCHEME_LENGTH + 2 ) { // Invalid length (to short). return; |