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

This commit is contained in:
TreeHugger Robot
2021-11-30 09:42:15 +00:00
committed by Android (Google) Code Review

View File

@@ -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;
}
/**