summaryrefslogtreecommitdiff
path: root/connectivity
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2020-07-15 20:16:54 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2020-07-16 08:34:03 +0200
commitf173aa0a86d86ddfa42ee03b5973495eb595c1fc (patch)
treec99e6f83eeb224d3010d1aaf5b83e1347e216c82 /connectivity
parent39ec20cd90164089cb2b9a89e1b7d64a1c12822a (diff)
loplugin:unusedmethods
Change-Id: Ibc1ec64cba8eb083aaff28848a42337cc597ea19 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/98857 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'connectivity')
-rw-r--r--connectivity/source/inc/calc/CDriver.hxx2
-rw-r--r--connectivity/source/inc/dbase/DDriver.hxx6
-rw-r--r--connectivity/source/inc/flat/EDriver.hxx5
3 files changed, 1 insertions, 12 deletions
diff --git a/connectivity/source/inc/calc/CDriver.hxx b/connectivity/source/inc/calc/CDriver.hxx
index 73b2f564c149..02d9dea55033 100644
--- a/connectivity/source/inc/calc/CDriver.hxx
+++ b/connectivity/source/inc/calc/CDriver.hxx
@@ -38,8 +38,6 @@ namespace connectivity
css::uno::XComponentContext >& _rxContext) :
file::OFileDriver(_rxContext) {}
- /// @throws css::uno::RuntimeException
- static OUString getImplementationName_Static( );
OUString SAL_CALL getImplementationName( ) override;
// XDriver
diff --git a/connectivity/source/inc/dbase/DDriver.hxx b/connectivity/source/inc/dbase/DDriver.hxx
index 9378b4c5f693..63de640dfe22 100644
--- a/connectivity/source/inc/dbase/DDriver.hxx
+++ b/connectivity/source/inc/dbase/DDriver.hxx
@@ -36,12 +36,8 @@ namespace connectivity
public:
ODriver(const css::uno::Reference< css::uno::XComponentContext >& _rxContext) : file::OFileDriver(_rxContext){}
- // XInterface
- /// @throws css::uno::RuntimeException
- static OUString getImplementationName_Static( );
- // static css::uno::Sequence< OUString > getSupportedServiceNames_Static( ) throw (css::uno::RuntimeException);
-
OUString SAL_CALL getImplementationName( ) override;
+
// XDriver
virtual css::uno::Reference< css::sdbc::XConnection > SAL_CALL connect( const OUString& url, const css::uno::Sequence< css::beans::PropertyValue >& info ) override;
virtual sal_Bool SAL_CALL acceptsURL( const OUString& url ) override;
diff --git a/connectivity/source/inc/flat/EDriver.hxx b/connectivity/source/inc/flat/EDriver.hxx
index c818b363203a..9b5669920415 100644
--- a/connectivity/source/inc/flat/EDriver.hxx
+++ b/connectivity/source/inc/flat/EDriver.hxx
@@ -36,11 +36,6 @@ namespace connectivity
public:
ODriver(const css::uno::Reference< css::uno::XComponentContext >& _rxContext) : file::OFileDriver(_rxContext){}
- // XInterface
- /// @throws css::uno::RuntimeException
- static OUString getImplementationName_Static( );
- // static css::uno::Sequence< OUString > getSupportedServiceNames_Static( ) throw (css::uno::RuntimeException);
-
OUString SAL_CALL getImplementationName( ) override;
// XDriver
virtual css::uno::Reference< css::sdbc::XConnection > SAL_CALL connect( const OUString& url, const css::uno::Sequence< css::beans::PropertyValue >& info ) override;