diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2022-11-25 18:38:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-25 18:38:08 -0500 |
commit | 6de3d7f184a4490d342a4c43af6a04b0b26f8cfd (patch) | |
tree | cdb69a46a85bf0908cfe45ebd3f06e3ada608454 /cli/text_encoding.rs | |
parent | dcb4ffb93a380710c32cc212b937ea38db5ceacc (diff) |
refactor: move cdp.rs to tools/repl (#16821)
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}'; |