summaryrefslogtreecommitdiff
path: root/cli/disk_cache.rs
diff options
context:
space:
mode:
Diffstat (limited to 'cli/disk_cache.rs')
-rw-r--r--cli/disk_cache.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/cli/disk_cache.rs b/cli/disk_cache.rs
index 808a1c9b7..8978065de 100644
--- a/cli/disk_cache.rs
+++ b/cli/disk_cache.rs
@@ -147,11 +147,6 @@ impl DiskCache {
deno_fs::write_file(&path, data, 0o666)
.map_err(|e| with_io_context(&e, format!("{:#?}", &path)))
}
-
- pub fn remove(&self, filename: &Path) -> std::io::Result<()> {
- let path = self.location.join(filename);
- fs::remove_file(path)
- }
}
#[cfg(test)]