diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-06-26 10:58:28 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-06-26 16:29:15 +0100 |
commit | 5b621a30ccf2ba3967e1189986bf1a3ea8079e8e (patch) | |
tree | 687e63370433978c9ad52e68a839f9b95d5c212e /framework | |
parent | c8bdd09ad55349b84a30694f948bce34e06593ca (diff) |
clang: Dead assignment
Change-Id: Ifcbfe29f116d43cc4e65641e24a302e4cdd71129
Diffstat (limited to 'framework')
-rw-r--r-- | framework/source/fwi/classes/propertysethelper.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/framework/source/fwi/classes/propertysethelper.cxx b/framework/source/fwi/classes/propertysethelper.cxx index 4e784d397cb2..8265f3456a31 100644 --- a/framework/source/fwi/classes/propertysethelper.cxx +++ b/framework/source/fwi/classes/propertysethelper.cxx @@ -194,7 +194,6 @@ void SAL_CALL PropertySetHelper::setPropertyValue(const OUString& sProperty, { // SAFE -> aWriteLock.reset(); - bLocked = true; } bool bWillBeChanged = (aCurrentValue != aValue); @@ -212,7 +211,6 @@ void SAL_CALL PropertySetHelper::setPropertyValue(const OUString& sProperty, if (m_bReleaseLockOnCall) { aWriteLock.clear(); - bLocked = false; // <- SAFE } |