[lexer] Remove empty Lexer impl

This commit is contained in:
Eryn Wells 2018-09-02 17:23:32 -07:00
parent 757f943fff
commit 04f2eb0937

View file

@ -45,9 +45,6 @@ impl<T> Lexer<T> where T: Iterator<Item=char> {
}
}
impl<T> Lexer<T> where T: Iterator<Item=char> {
}
impl<T> Iterator for Lexer<T> where T: Iterator<Item=char> {
type Item = Result;