From 6de3d7f184a4490d342a4c43af6a04b0b26f8cfd Mon Sep 17 00:00:00 2001 From: David Sherret Date: Fri, 25 Nov 2022 18:38:08 -0500 Subject: refactor: move cdp.rs to tools/repl (#16821) --- cli/text_encoding.rs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'cli/text_encoding.rs') 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}'; -- cgit v1.2.3