diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-08-21 22:54:33 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-08-21 23:31:25 +0200 |
commit | 20a7ffd848ee9d9007ae1c9464713f9d1d125bce (patch) | |
tree | ea7b96763919efc87186e43deb36bdb9bc142160 /stoc | |
parent | 7936368f9e7d0c50f7e3ebb987778029d0dcc22c (diff) |
stoc: remove extra braces
Change-Id: I3b6b77ba58832d7bfc350eeb5e589513b716a081
Diffstat (limited to 'stoc')
-rw-r--r-- | stoc/source/proxy_factory/proxyfac.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/stoc/source/proxy_factory/proxyfac.cxx b/stoc/source/proxy_factory/proxyfac.cxx index 49f380e86d0d..ae2c94f3c426 100644 --- a/stoc/source/proxy_factory/proxyfac.cxx +++ b/stoc/source/proxy_factory/proxyfac.cxx @@ -432,7 +432,6 @@ Reference< XInterface > SAL_CALL proxyfac_create( SAL_UNUSED_PARAMETER Reference< XComponentContext > const & ) { Reference< XInterface > xRet; - { static osl::Mutex s_mutex; // note: don't use ::osl::Mutex::getGlobalMutex() here, it deadlocks // with getImplHelperInitMutex() @@ -445,7 +444,6 @@ Reference< XInterface > SAL_CALL proxyfac_create( xRet = static_cast< ::cppu::OWeakObject * >(new FactoryImpl); rwInstance = xRet; } - } return xRet; } |