chore: TCPSocketFactory use default for deconstructor
This commit is contained in:
@ -25,11 +25,6 @@ TCPSocketFactory::TCPSocketFactory(IEventQueue *events, SocketMultiplexer *socke
|
||||
// do nothing
|
||||
}
|
||||
|
||||
TCPSocketFactory::~TCPSocketFactory()
|
||||
{
|
||||
// do nothing
|
||||
}
|
||||
|
||||
IDataSocket *TCPSocketFactory::create(IArchNetwork::EAddressFamily family, SecurityLevel securityLevel) const
|
||||
{
|
||||
if (securityLevel != SecurityLevel::PlainText) {
|
||||
|
||||
@ -19,7 +19,7 @@ class TCPSocketFactory : public ISocketFactory
|
||||
{
|
||||
public:
|
||||
TCPSocketFactory(IEventQueue *events, SocketMultiplexer *socketMultiplexer);
|
||||
~TCPSocketFactory() override;
|
||||
~TCPSocketFactory() override = default;
|
||||
|
||||
// ISocketFactory overrides
|
||||
IDataSocket *create(
|
||||
|
||||
Reference in New Issue
Block a user