Skip to content

Commit

Permalink
Apply rustfmt-1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sile committed Jul 2, 2019
1 parent 2c8adee commit a16c15a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/deflate/decode.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use byteorder::LittleEndian;
use byteorder::ReadBytesExt;
use rle_decode_fast::rle_decode;
use std::cmp;
use std::io;
use std::io::Read;
use rle_decode_fast::rle_decode;

use super::symbol;
use bit;
Expand Down
2 changes: 1 addition & 1 deletion src/non_blocking/deflate/decode.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use byteorder::LittleEndian;
use byteorder::ReadBytesExt;
use rle_decode_fast::rle_decode;
use std::cmp;
use std::io;
use std::io::Read;
use rle_decode_fast::rle_decode;

use deflate::symbol::{self, HuffmanCodec};
use lz77;
Expand Down

0 comments on commit a16c15a

Please sign in to comment.