servo: Merge #10610 - Replace instances of infallible unwrap with expect (from jdm:unwrap); r=SimonSapin

Source-Repo: https://github.com/servo/servo
Source-Revision: 415fd93a502b47c03d2eb856cbd76a99e0bf0392
This commit is contained in:
Josh Matthews 2016-04-14 20:33:22 +05:01
Родитель d466d33083
Коммит 463637be20
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -867,7 +867,7 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF>
failure.parent_info,
window_size,
None,
LoadData::new(Url::parse("about:failure").unwrap()));
LoadData::new(Url::parse("about:failure").expect("infallible")));
self.push_pending_frame(new_pipeline_id, Some(failure.pipeline_id));
@ -950,7 +950,7 @@ impl<LTF: LayoutThreadFactory, STF: ScriptThreadFactory> Constellation<LTF, STF>
// If no url is specified, reload.
let new_url = load_info.url.clone()
.or_else(|| old_pipeline.map(|old_pipeline| old_pipeline.url.clone()))
.unwrap_or_else(|| Url::parse("about:blank").unwrap());
.unwrap_or_else(|| Url::parse("about:blank").expect("infallible"));
// Compare the pipeline's url to the new url. If the origin is the same,
// then reuse the script thread in creating the new pipeline