diff options
Diffstat (limited to 'cli/text_encoding.rs')
-rw-r--r-- | cli/text_encoding.rs | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/cli/text_encoding.rs b/cli/text_encoding.rs index 2bb45beb0..c16a1289d 100644 --- a/cli/text_encoding.rs +++ b/cli/text_encoding.rs @@ -1,10 +1,9 @@ // Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. use encoding_rs::*; -use std::{ - borrow::Cow, - io::{Error, ErrorKind}, -}; +use std::borrow::Cow; +use std::io::Error; +use std::io::ErrorKind; pub const BOM_CHAR: char = '\u{FEFF}'; |