summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp
diff options
context:
space:
mode:
authorAli Mohammad Pur <ali.mpfard@gmail.com>2022-02-04 14:13:30 +0330
committerAndreas Kling <kling@serenityos.org>2022-02-06 13:10:10 +0100
commit3f614a8fca216a09c3b441c81b4075ab6fb0630d (patch)
tree81d0a642f741faad09654467a37469e046d2d04b /Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp
parentd66c513131f19f492ca3eb5b475950076925b239 (diff)
downloadserenity-3f614a8fca216a09c3b441c81b4075ab6fb0630d.zip
LibWebSocket: Switch to using Core::Stream
As LibTLS now supports the Core::Stream APIs, we can get rid of the split paths for TCP/TLS and significantly simplify the code as well. Provided to you free of charge by the Core::Stream-ification team :^)
Diffstat (limited to 'Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp')
-rw-r--r--Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp b/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp
deleted file mode 100644
index 263eefb3e2..0000000000
--- a/Userland/Libraries/LibWebSocket/Impl/AbstractWebSocketImpl.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
-/*
- * Copyright (c) 2021, Dexβ™ͺ <dexes.ttp@gmail.com>
- *
- * SPDX-License-Identifier: BSD-2-Clause
- */
-
-#include <LibWebSocket/Impl/AbstractWebSocketImpl.h>
-
-namespace WebSocket {
-
-AbstractWebSocketImpl::AbstractWebSocketImpl(Core::Object* parent)
- : Object(parent)
-{
-}
-
-AbstractWebSocketImpl::~AbstractWebSocketImpl()
-{
-}
-
-}