mirror of
https://github.com/servo/servo.git
synced 2025-07-22 23:03:42 +01:00
clippy: Allow too_many_arguments
for all functions (#31962)
This is the start of preventing this in the future. Co-authored-by: Martin Robinson <mrobinson@igalia.com>
This commit is contained in:
parent
8c1a72f130
commit
0da2508e4d
23 changed files with 51 additions and 0 deletions
|
@ -225,6 +225,7 @@ struct InProgressLoad {
|
|||
|
||||
impl InProgressLoad {
|
||||
/// Create a new InProgressLoad object.
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
fn new(
|
||||
id: PipelineId,
|
||||
browsing_context_id: BrowsingContextId,
|
||||
|
@ -3645,6 +3646,7 @@ impl ScriptThread {
|
|||
ScriptThread::set_user_interacting(false);
|
||||
}
|
||||
|
||||
#[allow(clippy::too_many_arguments)]
|
||||
fn handle_mouse_event(
|
||||
&self,
|
||||
pipeline_id: PipelineId,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue