drop old interning infra

This commit is contained in:
Aleksey Kladov 2019-04-09 22:52:06 +03:00
parent 6b993a9760
commit 88189c4282
2 changed files with 1 additions and 108 deletions

View file

@ -1,11 +1,8 @@
//! ra_db defines basic database traits. The concrete DB is defined by ra_ide_api.
mod cancellation;
mod input;
mod loc2id;
use std::{
panic, sync::Arc,
};
use std::{panic, sync::Arc};
use ra_syntax::{TextUnit, TextRange, SourceFile, TreeArc};
use relative_path::RelativePathBuf;
@ -16,7 +13,6 @@ pub use crate::{
input::{
FileId, CrateId, SourceRoot, SourceRootId, CrateGraph, Dependency, Edition,
},
loc2id::LocationInterner,
};
pub trait CheckCanceled: panic::RefUnwindSafe {