diff options
| author | Michael Goulet <michael@errs.io> | 2024-04-15 19:54:51 -0400 |
|---|---|---|
| committer | Michael Goulet <michael@errs.io> | 2024-04-15 19:54:51 -0400 |
| commit | 06501156d15120ff4a14c8f5b714c8c46563b58d (patch) | |
| tree | 843eee0a1d7bd667e903c44f8a2cb7d21ec5bb2f /compiler/rustc_span/src/source_map.rs | |
| parent | d29178c2efe7846fdb8c442219d7b70ae83e18e7 (diff) | |
| download | rust-06501156d15120ff4a14c8f5b714c8c46563b58d.tar.gz rust-06501156d15120ff4a14c8f5b714c8c46563b58d.zip | |
redundant ::{self}
Diffstat (limited to 'compiler/rustc_span/src/source_map.rs')
| -rw-r--r-- | compiler/rustc_span/src/source_map.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_span/src/source_map.rs b/compiler/rustc_span/src/source_map.rs index 93d5f06a167..d9aa5300ed8 100644 --- a/compiler/rustc_span/src/source_map.rs +++ b/compiler/rustc_span/src/source_map.rs @@ -14,7 +14,7 @@ use rustc_data_structures::sync::{IntoDynSyncSend, MappedReadGuard, ReadGuard, R use rustc_data_structures::unhash::UnhashMap; use std::fs; use std::io::{self, BorrowedBuf, Read}; -use std::path::{self}; +use std::path; #[cfg(test)] mod tests; |
