diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-08 19:32:55 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2018-09-09 08:18:01 +0200 |
commit | 38a98c2999bb0710e383ab6b326f3aa5165ee035 (patch) | |
tree | 03a728287a707c734b12f0c35251dc2fe32d4f0c /io | |
parent | 278e66488135c8fa2714520d056573c64ea803cf (diff) |
loplugin:simplifyconstruct in helpcompiler..io
Change-Id: Ibdc1933b5d8d6be1fe42a7df93bd7e1c903bb39b
Reviewed-on: https://gerrit.libreoffice.org/60202
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'io')
-rw-r--r-- | io/source/acceptor/acceptor.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/io/source/acceptor/acceptor.cxx b/io/source/acceptor/acceptor.cxx index c9449f6eb146..2f518a248053 100644 --- a/io/source/acceptor/acceptor.cxx +++ b/io/source/acceptor/acceptor.cxx @@ -79,9 +79,7 @@ namespace io_acceptor OAcceptor::OAcceptor( const Reference< XComponentContext > & xCtx ) - : m_pPipe( nullptr ) - , m_pSocket( nullptr ) - , m_bInAccept( false ) + : m_bInAccept( false ) , _xSMgr( xCtx->getServiceManager() ) , _xCtx( xCtx ) {} |