From a821a366f1f93ecbd3f0f05f6d081ee614011f75 Mon Sep 17 00:00:00 2001 From: Sean McArthur Date: Tue, 6 Feb 2018 16:14:09 -0800 Subject: [PATCH] chore(h1): remove accidental BufDeque::bytes code --- src/proto/h1/io.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/proto/h1/io.rs b/src/proto/h1/io.rs index faa927d5..585ea94b 100644 --- a/src/proto/h1/io.rs +++ b/src/proto/h1/io.rs @@ -517,9 +517,6 @@ impl Buf for BufDeque { return buf.bytes(); } } - if let Some(ref buf) = self.bufs.front() { - return buf.bytes(); - } &[] }