Remove unused recycle argument from Document::unload

This commit is contained in:
George Roman 2018-11-30 17:10:25 +02:00
parent be206f3e5f
commit 6c458b04d2
3 changed files with 4 additions and 4 deletions

View file

@ -2083,7 +2083,7 @@ impl ScriptThread {
fn handle_unload_document(&self, pipeline_id: PipelineId) {
let document = self.documents.borrow().find_document(pipeline_id);
if let Some(document) = document {
document.unload(false, false);
document.unload(false);
}
}