mirror of
https://github.com/servo/servo.git
synced 2025-07-30 10:40:27 +01:00
Remove unused part of the return value of parse_blob_url().
This commit is contained in:
parent
3e1bc8dcfe
commit
f4ab3ac54d
3 changed files with 4 additions and 5 deletions
|
@ -126,7 +126,7 @@ impl URL {
|
|||
let origin = get_blob_origin(&global.get_url());
|
||||
|
||||
if let Ok(url) = ServoUrl::parse(&url) {
|
||||
if let Ok((id, _, _)) = parse_blob_url(&url) {
|
||||
if let Ok((id, _)) = parse_blob_url(&url) {
|
||||
let resource_threads = global.resource_threads();
|
||||
let (tx, rx) = ipc::channel().unwrap();
|
||||
let msg = FileManagerThreadMsg::RevokeBlobURL(id, origin, tx);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue