From 3478676f8f7ec6817b1e17d09926fc35a507977a Mon Sep 17 00:00:00 2001 From: Matthias Krüger Date: Thu, 11 Apr 2019 09:54:26 +0200 Subject: Remove redundant closures and imports --- src/term/mod.rs | 3 --- 1 file changed, 3 deletions(-) (limited to 'src/term/mod.rs') diff --git a/src/term/mod.rs b/src/term/mod.rs index 61bc1509..9ab0aad9 100644 --- a/src/term/mod.rs +++ b/src/term/mod.rs @@ -351,7 +351,6 @@ impl<'a> RenderableCellsIter<'a> { } fn compute_fg_rgb(&self, fg: Color, cell: &Cell) -> Rgb { - use self::cell::Flags; match fg { Color::Spec(rgb) => rgb, Color::Named(ansi) => { @@ -1024,8 +1023,6 @@ impl Term { } } - use std::ops::Range; - trait Append: PushChar { fn append( &mut self, -- cgit