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

Commit f96d2296 authored by Shishir Agrawal's avatar Shishir Agrawal Committed by Android (Google) Code Review
Browse files

Merge "IccOpenLogicalChannelResponse: Single character fix." into lmp-dev

parents 3776ce39 1521e5ad
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -93,7 +93,7 @@ public class IccOpenLogicalChannelResponse implements Parcelable {
    public void writeToParcel(Parcel out, int flags) {
        out.writeInt(mChannel);
        out.writeInt(mStatus);
        if (mSelectResponse != null & mSelectResponse.length > 0) {
        if (mSelectResponse != null && mSelectResponse.length > 0) {
            out.writeInt(mSelectResponse.length);
            out.writeByteArray(mSelectResponse);
        } else {