summaryrefslogtreecommitdiff
path: root/ext/web/blob.rs
diff options
context:
space:
mode:
authorYoshiya Hinosawa <stibium121@gmail.com>2023-04-03 21:05:39 +0900
committerGitHub <noreply@github.com>2023-04-03 21:05:39 +0900
commit6d68392f8ae1b29626af8edc1666a889b69470a9 (patch)
tree258de97032ff34e71306d48842a2b812c003fd88 /ext/web/blob.rs
parent3cd7abf73fa104526508984daef54bbb8e120310 (diff)
Revert "fix(cli): don't store blob and data urls in the module cache (#18261)" (#18572)
This reverts commit b4c61c146a50dea0c4a53d8d505a4308ea7da279. cc @nayeemrmn
Diffstat (limited to 'ext/web/blob.rs')
-rw-r--r--ext/web/blob.rs5
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/web/blob.rs b/ext/web/blob.rs
index faa394729..7796c18af 100644
--- a/ext/web/blob.rs
+++ b/ext/web/blob.rs
@@ -79,11 +79,6 @@ impl BlobStore {
let mut blob_store = self.object_urls.lock();
blob_store.remove(url);
}
-
- pub fn clear(&self) {
- self.parts.lock().clear();
- self.object_urls.lock().clear();
- }
}
#[derive(Debug)]