From 40c0438386abb5c1106a88ac1dd0c4ab6d16eae2 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Mon, 5 Dec 2016 09:04:29 +0100 Subject: loplugin:unnecessaryoverride (dtors) in eventattacher Change-Id: I548d90cb5aec077b78965f34b9275ef6aef315b0 --- eventattacher/source/eventattacher.cxx | 7 ------- 1 file changed, 7 deletions(-) (limited to 'eventattacher') diff --git a/eventattacher/source/eventattacher.cxx b/eventattacher/source/eventattacher.cxx index a5c400513c10..03f075bd035d 100644 --- a/eventattacher/source/eventattacher.cxx +++ b/eventattacher/source/eventattacher.cxx @@ -209,7 +209,6 @@ class EventAttacherImpl : public WeakImplHelper < XEventAttacher2, XInitializati { public: explicit EventAttacherImpl( const Reference< XComponentContext >& ); - virtual ~EventAttacherImpl() override; // XServiceInfo virtual OUString SAL_CALL getImplementationName( ) throw(RuntimeException, std::exception) override; @@ -283,12 +282,6 @@ EventAttacherImpl::EventAttacherImpl( const Reference< XComponentContext >& rxCo { } - -EventAttacherImpl::~EventAttacherImpl() -{ -} - - Reference< XInterface > SAL_CALL EventAttacherImpl_CreateInstance( const Reference< XMultiServiceFactory >& rSMgr ) throw( Exception ) { XEventAttacher *pEventAttacher = static_cast(new EventAttacherImpl( comphelper::getComponentContext(rSMgr) )); -- cgit