diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-11 10:47:01 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-10-12 06:31:56 +0000 |
commit | a9717054dcb59010c95bdbfdb440ac12e8703796 (patch) | |
tree | 1d6ad846800d036144d597275aa2b15b8b0fd2c8 /connectivity | |
parent | 29fe57afd79c96c5ff251c2468ababda5e506564 (diff) |
loplugin:unnecessaryoverride in connectivity/cui
Change-Id: I5ec4eb2f74036e42851333e3d669dbea58c2490a
Reviewed-on: https://gerrit.libreoffice.org/29687
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity')
-rw-r--r-- | connectivity/source/drivers/postgresql/pq_xtable.cxx | 7 | ||||
-rw-r--r-- | connectivity/source/drivers/postgresql/pq_xtable.hxx | 4 |
2 files changed, 0 insertions, 11 deletions
diff --git a/connectivity/source/drivers/postgresql/pq_xtable.cxx b/connectivity/source/drivers/postgresql/pq_xtable.cxx index 4b8d4518c1f4..ddc96f61aaa8 100644 --- a/connectivity/source/drivers/postgresql/pq_xtable.cxx +++ b/connectivity/source/drivers/postgresql/pq_xtable.cxx @@ -311,13 +311,6 @@ Any Table::queryInterface( const Type & reqType ) throw (RuntimeException, std:: return ret; } -css::uno::Any Table::getPropertyValue(const OUString& aPropertyName) - throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) -{ - return ReflectionBase::getPropertyValue( aPropertyName ); -} - - OUString Table::getName( ) throw (css::uno::RuntimeException, std::exception) { Statics & st = getStatics(); diff --git a/connectivity/source/drivers/postgresql/pq_xtable.hxx b/connectivity/source/drivers/postgresql/pq_xtable.hxx index 3ff598c0ed3e..759dddad8a68 100644 --- a/connectivity/source/drivers/postgresql/pq_xtable.hxx +++ b/connectivity/source/drivers/postgresql/pq_xtable.hxx @@ -123,10 +123,6 @@ public: css::lang::IndexOutOfBoundsException, css::uno::RuntimeException, std::exception) override; - // TODO: remove again - virtual css::uno::Any SAL_CALL getPropertyValue(const OUString& aPropertyName) - throw(css::beans::UnknownPropertyException, css::lang::WrappedTargetException, css::uno::RuntimeException, std::exception) override; - // XNamed virtual OUString SAL_CALL getName( ) throw (css::uno::RuntimeException, std::exception) override; virtual void SAL_CALL setName( const OUString& aName ) throw (css::uno::RuntimeException, std::exception) override; |