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

Commit 48b07878 authored by Hansong Zhang's avatar Hansong Zhang Committed by Android Build Coastguard Worker
Browse files

Bluetooth: Fix formatting in getAlias()

Bug: 180747689
Test: manual
Change-Id: Ic309f4aad116fd424d5d0d0e2016d61be8826b78
(cherry picked from commit 4e7449ce)
parent b2de95be
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -1329,7 +1329,10 @@ public final class BluetoothDevice implements Parcelable, Attributable {
            if (alias == null) {
                return getName();
            }
            return alias;
            return alias
                    .replace('\t', ' ')
                    .replace('\n', ' ')
                    .replace('\r', ' ');
        } catch (RemoteException e) {
            Log.e(TAG, "", e);
        }