Skip to content

Commit 1b9bf8a

Browse files
committed
remove redundant imports
detects redundant imports that can be eliminated. for #117772 : In order to facilitate review and modification, split the checking code and removing redundant imports code into two PR.
1 parent 9c809ce commit 1b9bf8a

12 files changed

+4
-16
lines changed

src/comment.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Formatting and tools for comments.
22

3-
use std::{self, borrow::Cow, iter};
3+
use std::{borrow::Cow, iter};
44

55
use itertools::{multipeek, MultiPeek};
66
use lazy_static::lazy_static;
@@ -1847,7 +1847,6 @@ fn remove_comment_header(comment: &str) -> &str {
18471847
#[cfg(test)]
18481848
mod test {
18491849
use super::*;
1850-
use crate::shape::{Indent, Shape};
18511850

18521851
#[test]
18531852
fn char_classes() {

src/config/file_lines.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ use std::path::PathBuf;
66
use std::{cmp, fmt, iter, str};
77

88
use rustc_data_structures::sync::Lrc;
9-
use rustc_span::{self, SourceFile};
9+
use rustc_span::SourceFile;
1010
use serde::{ser, Deserialize, Deserializer, Serialize, Serializer};
1111
use serde_json as json;
1212
use thiserror::Error;

src/config/mod.rs

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
use std::cell::Cell;
2-
use std::default::Default;
32
use std::fs::File;
43
use std::io::{Error, ErrorKind, Read};
54
use std::path::{Path, PathBuf};
@@ -1017,7 +1016,6 @@ make_backup = false
10171016
#[cfg(test)]
10181017
mod partially_unstable_option {
10191018
use super::mock::{Config, PartiallyUnstableOption};
1020-
use super::*;
10211019

10221020
/// From the command line, we can override with a stable variant.
10231021
#[test]

src/emitter/checkstyle.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
use self::xml::XmlEscaped;
22
use super::*;
33
use crate::rustfmt_diff::{make_diff, DiffLine, Mismatch};
4-
use std::io::{self, Write};
54

65
mod xml;
76

src/emitter/diff.rs

-2
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ impl Emitter for DiffEmitter {
5151
#[cfg(test)]
5252
mod tests {
5353
use super::*;
54-
use crate::config::Config;
55-
use crate::FileName;
5654
use std::path::PathBuf;
5755

5856
#[test]

src/emitter/json.rs

-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ use super::*;
22
use crate::rustfmt_diff::{make_diff, DiffLine, Mismatch};
33
use serde::Serialize;
44
use serde_json::to_string as to_json_string;
5-
use std::io::{self, Write};
65

76
#[derive(Debug, Default)]
87
pub(crate) struct JsonEmitter {
@@ -106,7 +105,6 @@ impl JsonEmitter {
106105
#[cfg(test)]
107106
mod tests {
108107
use super::*;
109-
use crate::FileName;
110108
use std::path::PathBuf;
111109

112110
#[test]

src/emitter/modified_lines.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use super::*;
22
use crate::rustfmt_diff::{make_diff, ModifiedLines};
3-
use std::io::Write;
43

54
#[derive(Debug, Default)]
65
pub(crate) struct ModifiedLinesEmitter;

src/emitter/stdout.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
use super::*;
22
use crate::config::Verbosity;
3-
use std::io::Write;
43

54
#[derive(Debug)]
65
pub(crate) struct StdoutEmitter {

src/ignore_path.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
use ignore::{self, gitignore};
1+
use ignore::gitignore;
22

33
use crate::config::{FileName, IgnoreList};
44

src/imports.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1102,7 +1102,6 @@ enum SharedPrefix {
11021102
#[cfg(test)]
11031103
mod test {
11041104
use super::*;
1105-
use rustc_span::DUMMY_SP;
11061105

11071106
// Parse the path part of an import. This parser is not robust and is only
11081107
// suitable for use in a test harness.

src/reorder.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
77
// FIXME(#2455): Reorder trait items.
88

9-
use std::cmp::{Ord, Ordering};
9+
use std::cmp::Ordering;
1010

1111
use rustc_ast::{ast, attr};
1212
use rustc_span::{symbol::sym, Span};

src/types.rs

-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
use std::iter::ExactSizeIterator;
21
use std::ops::Deref;
32

43
use rustc_ast::ast::{self, FnRetTy, Mutability, Term};

0 commit comments

Comments
 (0)