From b01226fddce68f6cf84072c826251c4a63913120 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joakim=20Frosteg=C3=A5rd?= Date: Tue, 21 Jul 2020 17:21:32 +0200 Subject: [PATCH] aquatic http protocol: remove unimplemented Response::from_bytes fn --- aquatic_http_protocol/src/response.rs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/aquatic_http_protocol/src/response.rs b/aquatic_http_protocol/src/response.rs index f7576f9..46c8a24 100644 --- a/aquatic_http_protocol/src/response.rs +++ b/aquatic_http_protocol/src/response.rs @@ -187,10 +187,6 @@ impl Response { Response::Scrape(r) => r.to_bytes(), } } - - pub fn from_bytes(bytes: &[u8]) -> anyhow::Result { - unimplemented!() - } }