diff options
author | Ms2ger <ms2ger@gmail.com> | 2015-01-05 08:58:00 +0100 |
---|---|---|
committer | Ms2ger <ms2ger@gmail.com> | 2015-01-05 08:58:00 +0100 |
commit | c4e44b568a172cdb6486e5a5b8b4a7c59d4d2382 (patch) | |
tree | 4a3f4150d6861e674dd55afb8bc6b0c1f6a6d21f /components/script/script_task.rs | |
parent | 76b0e2d3c702d5996d0530b224174a2431e9104b (diff) | |
download | servo-c4e44b568a172cdb6486e5a5b8b4a7c59d4d2382.tar.gz servo-c4e44b568a172cdb6486e5a5b8b4a7c59d4d2382.zip |
Remove the unused native argument from spawn_named_with_send_on_failure.
Diffstat (limited to 'components/script/script_task.rs')
-rw-r--r-- | components/script/script_task.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/script_task.rs b/components/script/script_task.rs index 2b192c75587..88e6ed860a5 100644 --- a/components/script/script_task.rs +++ b/components/script/script_task.rs @@ -314,7 +314,7 @@ impl ScriptTaskFactory for ScriptTask { // This must always be the very last operation performed before the task completes failsafe.neuter(); - }, ConstellationMsg::Failure(failure_msg), const_chan, false); + }, ConstellationMsg::Failure(failure_msg), const_chan); } } |