From f06a7f40bfcb1d43847a9e467ad695a7f89e36ce Mon Sep 17 00:00:00 2001 From: Sam Atkins Date: Mon, 10 Oct 2022 15:50:28 +0100 Subject: [PATCH] LibProtocol: Remove redundant return statement --- Userland/Libraries/LibProtocol/RequestClient.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibProtocol/RequestClient.cpp b/Userland/Libraries/LibProtocol/RequestClient.cpp index 8087b1dd5f..e9b22c4e8e 100644 --- a/Userland/Libraries/LibProtocol/RequestClient.cpp +++ b/Userland/Libraries/LibProtocol/RequestClient.cpp @@ -40,7 +40,6 @@ RefPtr RequestClient::start_request(String const& method, URL const& ur request->set_request_fd({}, response_fd); m_requests.set(request_id, request); return request; - return nullptr; } bool RequestClient::stop_request(Badge, Request& request)