From 2789e9887666a05695778bd9d822616985b40dbc Mon Sep 17 00:00:00 2001 From: Oluwatobi Sofela <60105594+oluwatobiss@users.noreply.github.com> Date: Thu, 21 Mar 2024 00:05:29 +0100 Subject: clippy: Fix redundant field names warnings (#31793) --- components/script/dom/bluetoothremotegattdescriptor.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'components/script/dom/bluetoothremotegattdescriptor.rs') diff --git a/components/script/dom/bluetoothremotegattdescriptor.rs b/components/script/dom/bluetoothremotegattdescriptor.rs index 6134e42b6a0..675863b17f4 100644 --- a/components/script/dom/bluetoothremotegattdescriptor.rs +++ b/components/script/dom/bluetoothremotegattdescriptor.rs @@ -46,9 +46,9 @@ impl BluetoothRemoteGATTDescriptor { BluetoothRemoteGATTDescriptor { reflector_: Reflector::new(), characteristic: Dom::from_ref(characteristic), - uuid: uuid, + uuid, value: DomRefCell::new(None), - instance_id: instance_id, + instance_id, } } -- cgit v1.2.3