From 04f2eb093703ea2cbbd5dfb2e92d78d047acf0ee Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sun, 2 Sep 2018 17:23:32 -0700 Subject: [PATCH] [lexer] Remove empty Lexer impl --- lexer/src/lib.rs | 3 --- 1 file changed, 3 deletions(-) diff --git a/lexer/src/lib.rs b/lexer/src/lib.rs index 8741851..dd947a9 100644 --- a/lexer/src/lib.rs +++ b/lexer/src/lib.rs @@ -45,9 +45,6 @@ impl Lexer where T: Iterator { } } -impl Lexer where T: Iterator { -} - impl Iterator for Lexer where T: Iterator { type Item = Result;