Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 5c41363d authored by Bhakthavatsala Raghavendra's avatar Bhakthavatsala Raghavendra Committed by Charlie Boutier
Browse files

Add null check uuid results from ACTION_UUID Intent

Test: atest BumbleBluetoothTests
Flag: TEST ONLY
Bug: 355414748

Change-Id: I7809444b32c328bdf15e62cce656fd388c9d8eea
parent 88a117b4
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -65,9 +65,11 @@ public class SdpClientTest {
                        ParcelUuid[] parcelUuids =
                                intent.getParcelableArrayExtra(
                                        BluetoothDevice.EXTRA_UUID, ParcelUuid.class);
                        if (parcelUuids != null) {
                            mFutureIntent.set(Arrays.asList(parcelUuids));
                        }
                    }
                }
            };

    @Before