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

Commit 3c4a917c authored by Hansong Zhang's avatar Hansong Zhang
Browse files

Bluetooth: Fix formatting in getAlias()

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