diff options
Diffstat (limited to 'components/script/dom/bluetooth.rs')
-rw-r--r-- | components/script/dom/bluetooth.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/components/script/dom/bluetooth.rs b/components/script/dom/bluetooth.rs index 6489e8872e8..f9d50fd8436 100644 --- a/components/script/dom/bluetooth.rs +++ b/components/script/dom/bluetooth.rs @@ -166,7 +166,7 @@ impl Bluetooth { // Step 2.2: There are no requiredServiceUUIDS, we scan for all devices. let mut uuid_filters = vec![]; - if let &Some(ref filters) = filters { + if let Some(filters) = filters { // Step 2.1. if filters.is_empty() { p.reject_error(Type(FILTER_EMPTY_ERROR.to_owned())); |