diff options
author | Noel Grandin <noelgrandin@gmail.com> | 2016-12-11 22:15:14 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-12 09:16:09 +0000 |
commit | d6f2dd831a37ce214c05ed558c4fef2b76b9b121 (patch) | |
tree | 8e523b0b3d27d126f1dfd526c3879dbfc7273116 /scripting | |
parent | 221a3413af1b0f86a78c141fb2ea8fe969911dfb (diff) |
remove useless Mutex guards
Change-Id: Ib1edb681b47ce98e2e810d15111932002786aa51
Reviewed-on: https://gerrit.libreoffice.org/31875
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Tested-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'scripting')
-rw-r--r-- | scripting/source/basprov/basmethnode.cxx | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/scripting/source/basprov/basmethnode.cxx b/scripting/source/basprov/basmethnode.cxx index e7480161eed9..a67a8f766432 100644 --- a/scripting/source/basprov/basmethnode.cxx +++ b/scripting/source/basprov/basmethnode.cxx @@ -128,24 +128,18 @@ namespace basprov Sequence< Reference< browse::XBrowseNode > > BasicMethodNodeImpl::getChildNodes( ) throw (RuntimeException, std::exception) { - SolarMutexGuard aGuard; - return Sequence< Reference< browse::XBrowseNode > >(); } sal_Bool BasicMethodNodeImpl::hasChildNodes( ) throw (RuntimeException, std::exception) { - SolarMutexGuard aGuard; - return false; } sal_Int16 BasicMethodNodeImpl::getType( ) throw (RuntimeException, std::exception) { - SolarMutexGuard aGuard; - return browse::BrowseNodeTypes::SCRIPT; } |