mirror of
https://github.com/servo/servo.git
synced 2025-08-06 22:15:33 +01:00
Fix a bunch of clippy lints
This commit is contained in:
parent
b1ca3d1cdf
commit
6b215f38ee
58 changed files with 281 additions and 356 deletions
|
@ -22,10 +22,9 @@ impl ParseErrorReporter for CSSErrorReporter {
|
|||
}
|
||||
|
||||
fn clone(&self) -> Box<ParseErrorReporter + Send + Sync> {
|
||||
let error_reporter = box CSSErrorReporter { pipelineid: self.pipelineid, } ;
|
||||
return error_reporter;
|
||||
box CSSErrorReporter { pipelineid: self.pipelineid, }
|
||||
}
|
||||
fn pipeline(&self) -> PipelineId {
|
||||
return self.pipelineid;
|
||||
self.pipelineid
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue