diff options
author | Matthias Krüger <matthias.krueger@famsik.de> | 2019-04-11 09:54:26 +0200 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-04-11 07:54:26 +0000 |
commit | 3478676f8f7ec6817b1e17d09926fc35a507977a (patch) | |
tree | c1b6d403446a312b635a3f1b75e884c3bc646a60 /src/grid | |
parent | d406627acb68ff861803c09089462027eb69b5e5 (diff) | |
download | r-alacritty-3478676f8f7ec6817b1e17d09926fc35a507977a.tar.gz r-alacritty-3478676f8f7ec6817b1e17d09926fc35a507977a.tar.bz2 r-alacritty-3478676f8f7ec6817b1e17d09926fc35a507977a.zip |
Remove redundant closures and imports
Diffstat (limited to 'src/grid')
-rw-r--r-- | src/grid/row.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grid/row.rs b/src/grid/row.rs index 0a58de97..88a23871 100644 --- a/src/grid/row.rs +++ b/src/grid/row.rs @@ -133,7 +133,7 @@ impl<T> Row<T> { where T: GridCell, { - self.inner.iter().all(|c| c.is_empty()) + self.inner.iter().all(GridCell::is_empty) } #[inline] |