remove extra spaces after keywords

This commit is contained in:
Pavel Sergeev 2017-07-16 13:27:53 +03:00
parent c225847a81
commit 677a24a8d6
4 changed files with 4 additions and 4 deletions

View file

@ -2037,7 +2037,7 @@ impl<Message, LTF, STF> Constellation<Message, LTF, STF>
let visibility_msg = ConstellationControlMsg::NotifyVisibilityChange(parent_pipeline_id,
browsing_context_id,
visibility);
let result = match self.pipelines.get(&parent_pipeline_id) {
let result = match self.pipelines.get(&parent_pipeline_id) {
None => return warn!("Parent pipeline {:?} closed", parent_pipeline_id),
Some(parent_pipeline) => parent_pipeline.event_loop.send(visibility_msg),
};