Remove ParsedIntentInfo CREATOR am: 75214cc510 am: f416e7b485
Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/15080916 Change-Id: I8376c9667aa64953551961c3346447ad06c93f10
This commit is contained in:
@@ -19,7 +19,6 @@ package android.content.pm.parsing.component;
|
||||
import android.annotation.Nullable;
|
||||
import android.content.IntentFilter;
|
||||
import android.os.Parcel;
|
||||
import android.os.Parcelable;
|
||||
import android.util.Pair;
|
||||
|
||||
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() {
|
||||
return hasDefault;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user