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

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

Merge "Make MAC address String in AssociationInfo upper-case"

parents 51f6e1fc f0bf40dc
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ public final class AssociationInfo implements Parcelable {

    /** @hide */
    public @Nullable String getDeviceMacAddressAsString() {
        return mDeviceMacAddress != null ? mDeviceMacAddress.toString() : null;
        return mDeviceMacAddress != null ? mDeviceMacAddress.toString().toUpperCase() : null;
    }

    /**