summaryrefslogtreecommitdiff
path: root/comphelper
diff options
context:
space:
mode:
authorNoel Grandin <noelgrandin@gmail.com>2023-03-25 08:26:58 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-03-25 07:23:01 +0000
commitf2b027d5cdaf0e88d1fe47c4d89ef57c03b1f9b8 (patch)
treebf07eab4dd1c8663a3ec3b0d267ce7af47f107a7 /comphelper
parentd638a512ac19fa68f7760ff110469337f061f481 (diff)
no need to call lock() here
notifyEach was changed to lock the mutex before returning. Change-Id: I0dc0e11e51e28890e98035cf8356846f9b49c436 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/149575 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'comphelper')
-rw-r--r--comphelper/source/property/genericpropertyset.cxx1
1 files changed, 0 insertions, 1 deletions
diff --git a/comphelper/source/property/genericpropertyset.cxx b/comphelper/source/property/genericpropertyset.cxx
index a618d1f7c0e4..3d389172c496 100644
--- a/comphelper/source/property/genericpropertyset.cxx
+++ b/comphelper/source/property/genericpropertyset.cxx
@@ -152,7 +152,6 @@ void GenericPropertySet::_setPropertyValues( const PropertyMapEntry** ppEntries,
aEvt.PropertyName = (*ppEntries)->maName;
aEvt.NewValue = *pValues;
pHelper->notifyEach( aGuard, &XPropertyChangeListener::propertyChange, aEvt );
- aGuard.lock();
}
ppEntries++;