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

Commit fdb568c0 authored by Shishir Agrawal's avatar Shishir Agrawal Committed by Android Git Automerger
Browse files

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

* commit '035a52f36ee400cbc99270efca9e0e991ad1de97':
  IccOpenLogicalChannelResponse: Single character fix.
parents 68372525 f96d2296
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 {