Remove the unused PipelineExitType argument from Pipeline::exit.

This commit is contained in:
Ms2ger 2015-11-05 16:30:22 +01:00
parent 85a762a31a
commit ffffc5f065
2 changed files with 4 additions and 4 deletions

View file

@ -248,7 +248,7 @@ impl Pipeline {
let _ = self.chrome_to_paint_chan.send(ChromeToPaintMsg::PaintPermissionRevoked);
}
pub fn exit(&self, _: PipelineExitType) {
pub fn exit(&self) {
debug!("pipeline {:?} exiting", self.id);
// Script task handles shutting down layout, and layout handles shutting down the painter.