summaryrefslogtreecommitdiff
path: root/xmloff/source
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-05-30 13:45:50 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-05-31 08:33:40 +0200
commit307be8c9cedb32560419bbb09e029b906e5f1acd (patch)
treecda408f6f320e7e7cb24dd7e022259c807f0c89e /xmloff/source
parent7c41a3e50433fe67eb361f79121d103929946d23 (diff)
clang-tidy readability-redundant-control-flow
Change-Id: I832f7ef0f1bd55e365db7e49823fe8bc30390c04 Reviewed-on: https://gerrit.libreoffice.org/38215 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff/source')
-rw-r--r--xmloff/source/chart/ColorPropertySet.cxx4
1 files changed, 0 insertions, 4 deletions
diff --git a/xmloff/source/chart/ColorPropertySet.cxx b/xmloff/source/chart/ColorPropertySet.cxx
index 573a29605207..abaabc83b04d 100644
--- a/xmloff/source/chart/ColorPropertySet.cxx
+++ b/xmloff/source/chart/ColorPropertySet.cxx
@@ -112,25 +112,21 @@ uno::Any SAL_CALL ColorPropertySet::getPropertyValue( const OUString& /* Propert
void SAL_CALL ColorPropertySet::addPropertyChangeListener( const OUString& /* aPropertyName */, const Reference< XPropertyChangeListener >& /* xListener */ )
{
OSL_FAIL( "Not Implemented" );
- return;
}
void SAL_CALL ColorPropertySet::removePropertyChangeListener( const OUString& /* aPropertyName */, const Reference< XPropertyChangeListener >& /* aListener */ )
{
OSL_FAIL( "Not Implemented" );
- return;
}
void SAL_CALL ColorPropertySet::addVetoableChangeListener( const OUString& /* PropertyName */, const Reference< XVetoableChangeListener >& /* aListener */ )
{
OSL_FAIL( "Not Implemented" );
- return;
}
void SAL_CALL ColorPropertySet::removeVetoableChangeListener( const OUString& /* PropertyName */, const Reference< XVetoableChangeListener >& /* aListener */ )
{
OSL_FAIL( "Not Implemented" );
- return;
}
// ____ XPropertyState ____