Remove unused part of the return value of parse_blob_url().

This commit is contained in:
Ms2ger 2017-01-30 15:16:27 +01:00
parent 3e1bc8dcfe
commit f4ab3ac54d
3 changed files with 4 additions and 5 deletions

View file

@ -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);