Sort some imports

This commit is contained in:
Joe Wilm 2016-06-09 08:16:44 -07:00
parent aff56a65a4
commit a60dbd564b
No known key found for this signature in database
GPG Key ID: 39B57C6972F518DA
1 changed files with 6 additions and 6 deletions

View File

@ -30,21 +30,21 @@ mod ansi;
mod term;
mod util;
use std::sync::mpsc;
use std::collections::HashMap;
use std::fs::File;
use std::io::{BufReader, Read, BufRead, Write, BufWriter};
use std::sync::Arc;
use std::fs::File;
use std::sync::mpsc;
use std::os::unix::io::{FromRawFd, AsRawFd};
use renderer::{QuadRenderer, GlyphCache, LoadGlyph};
use text::FontDesc;
use grid::Grid;
use term::Term;
use meter::Meter;
use util::thread;
use renderer::{QuadRenderer, GlyphCache, LoadGlyph};
use term::Term;
use text::FontDesc;
use tty::process_should_exit;
use util::thread;
/// Things that the render/update thread needs to respond to
#[derive(Debug)]