aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_db
diff options
context:
space:
mode:
authorMetabaron <[email protected]>2019-11-12 10:59:25 +0000
committerMetabaron <[email protected]>2019-11-12 11:01:13 +0000
commitdae087656abf5d120cd9c051bf4fc446fca101e1 (patch)
tree22dee7a92dcc112d5a61c27a70f1468d19317634 /crates/ra_db
parent53b9c1c8d898a84a10b86f2fc31a7f6c2dfc46d0 (diff)
Fix unused import
Diffstat (limited to 'crates/ra_db')
-rw-r--r--crates/ra_db/src/input.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/ra_db/src/input.rs b/crates/ra_db/src/input.rs
index 472a15f2b..c0d95a13f 100644
--- a/crates/ra_db/src/input.rs
+++ b/crates/ra_db/src/input.rs
@@ -13,7 +13,7 @@ use ra_syntax::SmolStr;
13use rustc_hash::FxHashSet; 13use rustc_hash::FxHashSet;
14 14
15use crate::{RelativePath, RelativePathBuf}; 15use crate::{RelativePath, RelativePathBuf};
16use std::{error::Error, str::FromStr}; 16use std::str::FromStr;
17 17
18/// `FileId` is an integer which uniquely identifies a file. File paths are 18/// `FileId` is an integer which uniquely identifies a file. File paths are
19/// messy and system-dependent, so most of the code should work directly with 19/// messy and system-dependent, so most of the code should work directly with