Skip to content

Commit

Permalink
Removed trailing whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
AskBojesen committed May 8, 2024
1 parent 24b56c4 commit 5d152a0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Source/Plugin.BLE/Windows/Adapter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,7 @@ protected override IReadOnlyList<IDevice> GetBondedDevices()
this,
bluetoothLeDevice,
0, id);
devlist.Add(device);
devlist.Add(device);
Trace.Message("GetBondedDevices: {0}: {1}", dev.Id, dev.Name);
}
else
Expand Down Expand Up @@ -270,7 +270,7 @@ private void AdvertisementReceived(BluetoothLEAdvertisementWatcher watcher, Blue
Trace.Message("AdvReceived - Old: {0}", btAdv.ToDetailedString(device.Name));
(device as Device)?.Update(btAdv.RawSignalStrengthInDBm, ParseAdvertisementData(btAdv.Advertisement));
HandleDiscoveredDevice(device);
}
}
else
{
var bluetoothLeDevice = BluetoothLEDevice.FromBluetoothAddressAsync(btAdv.BluetoothAddress).AsTask().Result;
Expand All @@ -283,7 +283,7 @@ private void AdvertisementReceived(BluetoothLEAdvertisementWatcher watcher, Blue
deviceId,
ParseAdvertisementData(btAdv.Advertisement),
btAdv.IsConnectable);
Trace.Message("AdvReceived - New: {0}", btAdv.ToDetailedString(device.Name));
Trace.Message("AdvReceived - New: {0}", btAdv.ToDetailedString(device.Name));
HandleDiscoveredDevice(device);
}
}
Expand Down

0 comments on commit 5d152a0

Please sign in to comment.