summaryrefslogtreecommitdiff
path: root/remotebridges
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-12-05 09:02:06 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-12-05 09:02:06 +0100
commitd17d772eee3a6760f3100a7f0690f7b0440dffe6 (patch)
tree9c37e111a8158a0119cab9c2bae455914f32a02c /remotebridges
parent8ed7c011dca7dce0f9da4250054b475431724e6d (diff)
loplugin:unnecessaryoverride (dtors) in remotebridges
Change-Id: If9ea62b103f95a9f4abe692c6da2145f825a364f
Diffstat (limited to 'remotebridges')
-rw-r--r--remotebridges/source/unourl_resolver/unourl_resolver.cxx3
1 files changed, 0 insertions, 3 deletions
diff --git a/remotebridges/source/unourl_resolver/unourl_resolver.cxx b/remotebridges/source/unourl_resolver/unourl_resolver.cxx
index 4b7db748a5a9..7327e08fea50 100644
--- a/remotebridges/source/unourl_resolver/unourl_resolver.cxx
+++ b/remotebridges/source/unourl_resolver/unourl_resolver.cxx
@@ -65,7 +65,6 @@ class ResolverImpl : public WeakImplHelper< XServiceInfo, XUnoUrlResolver >
public:
explicit ResolverImpl( const Reference< XComponentContext > & xSMgr );
- virtual ~ResolverImpl() override;
// XServiceInfo
virtual OUString SAL_CALL getImplementationName() throw(css::uno::RuntimeException, std::exception) override;
@@ -82,8 +81,6 @@ ResolverImpl::ResolverImpl( const Reference< XComponentContext > & xCtx )
, _xCtx( xCtx )
{}
-ResolverImpl::~ResolverImpl() {}
-
// XServiceInfo
OUString ResolverImpl::getImplementationName()
throw(css::uno::RuntimeException, std::exception)