summaryrefslogtreecommitdiff
path: root/io/source/connector/connector.cxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-05 09:02:38 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-05 09:02:38 +0100
commitd3a1830539adabfcbefe7efde9757e2ac847b676 (patch)
tree7e77b89d6befed165692b501d869da05a433ac8a /io/source/connector/connector.cxx
parent408e8fa80b86c4da2df66125723b2ca147e3ad1f (diff)
loplugin:unnecessaryoverride (dtors) in io
Change-Id: I5c787d70fb3388e649e751d2b801765d567249c7
Diffstat (limited to 'io/source/connector/connector.cxx')
-rw-r--r--io/source/connector/connector.cxx4
1 files changed, 1 insertions, 3 deletions
diff --git a/io/source/connector/connector.cxx b/io/source/connector/connector.cxx
index aeeb0354b3f4..695326718c25 100644
--- a/io/source/connector/connector.cxx
+++ b/io/source/connector/connector.cxx
@@ -53,7 +53,7 @@ namespace stoc_connector
Reference< XComponentContext > _xCtx;
public:
explicit OConnector(const Reference< XComponentContext > &xCtx);
- virtual ~OConnector() override;
+
// Methods
virtual Reference< XConnection > SAL_CALL connect(
const OUString& sConnectionDescription )
@@ -70,8 +70,6 @@ namespace stoc_connector
, _xCtx( xCtx )
{}
- OConnector::~OConnector() {}
-
Reference< XConnection > SAL_CALL OConnector::connect( const OUString& sConnectionDescription )
throw( NoConnectException, ConnectionSetupException, RuntimeException, std::exception)
{