summaryrefslogtreecommitdiff
path: root/io/source/acceptor
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/acceptor
parent408e8fa80b86c4da2df66125723b2ca147e3ad1f (diff)
loplugin:unnecessaryoverride (dtors) in io
Change-Id: I5c787d70fb3388e649e751d2b801765d567249c7
Diffstat (limited to 'io/source/acceptor')
-rw-r--r--io/source/acceptor/acc_pipe.cxx5
-rw-r--r--io/source/acceptor/acc_socket.cxx5
2 files changed, 0 insertions, 10 deletions
diff --git a/io/source/acceptor/acc_pipe.cxx b/io/source/acceptor/acc_pipe.cxx
index 0ebd65808321..1819ff5616b6 100644
--- a/io/source/acceptor/acc_pipe.cxx
+++ b/io/source/acceptor/acc_pipe.cxx
@@ -43,7 +43,6 @@ namespace io_acceptor
{
public:
explicit PipeConnection( const OUString &sConnectionDescription);
- virtual ~PipeConnection() override;
virtual sal_Int32 SAL_CALL read( Sequence< sal_Int8 >& aReadBytes, sal_Int32 nBytesToRead )
throw(css::io::IOException,
@@ -77,10 +76,6 @@ namespace io_acceptor
reinterpret_cast< sal_IntPtr >(&m_pipe)) );
}
- PipeConnection::~PipeConnection()
- {
- }
-
sal_Int32 PipeConnection::read( Sequence < sal_Int8 > & aReadBytes , sal_Int32 nBytesToRead )
throw(css::io::IOException,
css::uno::RuntimeException, std::exception)
diff --git a/io/source/acceptor/acc_socket.cxx b/io/source/acceptor/acc_socket.cxx
index 1c721ec4d753..75764022c907 100644
--- a/io/source/acceptor/acc_socket.cxx
+++ b/io/source/acceptor/acc_socket.cxx
@@ -70,7 +70,6 @@ namespace io_acceptor {
{
public:
explicit SocketConnection( const OUString & sConnectionDescription );
- virtual ~SocketConnection() override;
virtual sal_Int32 SAL_CALL read( css::uno::Sequence< sal_Int8 >& aReadBytes,
sal_Int32 nBytesToRead )
@@ -170,10 +169,6 @@ namespace io_acceptor {
reinterpret_cast< sal_IntPtr >(&m_socket)) );
}
- SocketConnection::~SocketConnection()
- {
- }
-
void SocketConnection::completeConnectionString()
{
OUStringBuffer buf( 256 );