Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Commit

Permalink
[android] fix pulse marker view options parcelable creator (#9283)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guardiola31337 authored Jun 20, 2017
1 parent 20cb791 commit 985ff4c
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -66,14 +66,14 @@ public PulseMarkerView getMarker() {
return new PulseMarkerView(this);
}

public static final Parcelable.Creator<CountryMarkerViewOptions> CREATOR
= new Parcelable.Creator<CountryMarkerViewOptions>() {
public CountryMarkerViewOptions createFromParcel(Parcel in) {
return new CountryMarkerViewOptions(in);
public static final Parcelable.Creator<PulseMarkerViewOptions> CREATOR
= new Parcelable.Creator<PulseMarkerViewOptions>() {
public PulseMarkerViewOptions createFromParcel(Parcel in) {
return new PulseMarkerViewOptions(in);
}

public CountryMarkerViewOptions[] newArray(int size) {
return new CountryMarkerViewOptions[size];
public PulseMarkerViewOptions[] newArray(int size) {
return new PulseMarkerViewOptions[size];
}
};
}

0 comments on commit 985ff4c

Please sign in to comment.