summaryrefslogtreecommitdiff
path: root/cli/cache/node.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/cache/node.rs')
-rw-r--r--cli/cache/node.rs8
1 files changed, 0 insertions, 8 deletions
diff --git a/cli/cache/node.rs b/cli/cache/node.rs
index f42f132fd..298d81e2f 100644
--- a/cli/cache/node.rs
+++ b/cli/cache/node.rs
@@ -42,14 +42,6 @@ pub struct NodeAnalysisCache {
}
impl NodeAnalysisCache {
- #[cfg(test)]
- pub fn new_in_memory() -> Self {
- Self::new(CacheDB::in_memory(
- &NODE_ANALYSIS_CACHE_DB,
- crate::version::deno(),
- ))
- }
-
pub fn new(db: CacheDB) -> Self {
Self {
inner: NodeAnalysisCacheInner::new(db),