Merge "Fix renaming in device filter" into tm-dev

This commit is contained in:
Evan Chen
2022-05-12 17:12:34 +00:00
committed by Android (Google) Code Review

View File

@@ -47,7 +47,7 @@ class DeviceFilterPair<T extends Parcelable> {
}
String getDisplayName() {
if (mFilter != null) mFilter.getDeviceDisplayName(mDevice);
if (mFilter != null) return mFilter.getDeviceDisplayName(mDevice);
if (mDevice instanceof BluetoothDevice) {
return getDeviceDisplayNameInternal((BluetoothDevice) mDevice);