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

Commit 2e6b40a8 authored by Treehugger Robot's avatar Treehugger Robot Committed by Gerrit Code Review
Browse files

Merge "WrappedApplicationKey: Remove superfluous branch in deserialization."

parents d25623ae ffba3e7a
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -167,11 +167,8 @@ public final class WrappedApplicationKey implements Parcelable {
    protected WrappedApplicationKey(Parcel in) {
        mAlias = in.readString();
        mEncryptedKeyMaterial = in.createByteArray();
        // Check if there is still data to be read.
        if (in.dataAvail() > 0) {
        mMetadata = in.createByteArray();
    }
    }

    @Override
    public int describeContents() {