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

Commit 851f74a7 authored by Jordan Liu's avatar Jordan Liu Committed by android-build-merger
Browse files

Merge "Correct the value of access technology." am: ee2b0302

am: 65b6f0b4

Change-Id: I4efc4ff2081ced2cb1654449d49006f652850b03
parents 816992ff 65b6f0b4
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -64,7 +64,8 @@ public class PlmnActRecord implements Parcelable {
    public PlmnActRecord(byte[] bytes, int offset) {
        if (VDBG) Rlog.v(LOG_TAG, "Creating PlmnActRecord " + offset);
        this.plmn = IccUtils.bcdPlmnToString(bytes, offset);
        this.accessTechs = ((int) bytes[offset + 3] << 8) | bytes[offset + 4];
        this.accessTechs = (Byte.toUnsignedInt(bytes[offset + 3]) << 8)
                        | Byte.toUnsignedInt(bytes[offset + 4]);
    }

    private PlmnActRecord(String plmn, int accessTechs) {