Merge "Fix toString() of resource Configuration for Mobile network code"

This commit is contained in:
TreeHugger Robot
2023-02-06 18:41:09 +00:00
committed by Android (Google) Code Review

View File

@@ -1107,7 +1107,7 @@ public final class Configuration implements Parcelable, Comparable<Configuration
} else {
sb.append("?mcc");
}
if (mnc != 0) {
if (mnc != MNC_ZERO) {
sb.append(mnc);
sb.append("mnc");
} else {