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

Commit 6cbcd743 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Bluetooth: Fix formatting in getAlias()" into rvc-dev am: 16a307631e...

Merge "Bluetooth: Fix formatting in getAlias()" into rvc-dev am: 16a307631e am: 26b09d81 am: fc2c48a9

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15616111

Change-Id: Iff9511cdc6188001351db5a7efa2244d74b8f011
parents a00c656a fc2c48a9
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);
        }