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

Commit 16a30763 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Bluetooth: Fix formatting in getAlias()" into rvc-dev

parents 2b220b4e 3c4a917c
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);
        }