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

Commit 215f4c16 authored by Winson's avatar Winson Committed by Automerger Merge Worker
Browse files

Remove ParsedIntentInfo CREATOR am: 75214cc5 am: f416e7b4 am: 2d96f8ab

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15080916

Change-Id: I342142f7d4effba09dbd5753088e62a1970e205c
parents 207482d2 2d96f8ab
Loading
Loading
Loading
Loading
+0 −14
Original line number Original line Diff line number Diff line
@@ -19,7 +19,6 @@ package android.content.pm.parsing.component;
import android.annotation.Nullable;
import android.annotation.Nullable;
import android.content.IntentFilter;
import android.content.IntentFilter;
import android.os.Parcel;
import android.os.Parcel;
import android.os.Parcelable;
import android.util.Pair;
import android.util.Pair;


import com.android.internal.util.Parcelling;
import com.android.internal.util.Parcelling;
@@ -167,19 +166,6 @@ public final class ParsedIntentInfo extends IntentFilter {
                + '}';
                + '}';
    }
    }


    public static final Parcelable.Creator<ParsedIntentInfo> CREATOR =
            new Parcelable.Creator<ParsedIntentInfo>() {
                @Override
                public ParsedIntentInfo createFromParcel(Parcel source) {
                    return new ParsedIntentInfo(source);
                }

                @Override
                public ParsedIntentInfo[] newArray(int size) {
                    return new ParsedIntentInfo[size];
                }
            };

    public boolean isHasDefault() {
    public boolean isHasDefault() {
        return hasDefault;
        return hasDefault;
    }
    }