LibCore: remove redundant UDPSocket constructor

The comment claims it is for use from UDPServer::accept
Which is not a real function.
This commit is contained in:
Muhammad Zahalqa 2020-08-10 20:04:12 +03:00 committed by Andreas Kling
commit de5e542930
Notes: sideshowbarker 2024-07-19 04:03:55 +09:00
2 changed files with 0 additions and 11 deletions

View file

@ -36,7 +36,6 @@ public:
virtual ~UDPSocket() override;
private:
UDPSocket(int fd, Object* parent = nullptr);
explicit UDPSocket(Object* parent = nullptr);
};