Skip to content

Commit

Permalink
Make the MapPoint(Parcel) constructor private.
Browse files Browse the repository at this point in the history
  • Loading branch information
zestyping committed Aug 18, 2018
1 parent 0ff1f39 commit 4a08500
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ public MapPoint(double lat, double lon) {
this.lon = lon;
}

public MapPoint(Parcel parcel) {
private MapPoint(Parcel parcel) {
this.lat = parcel.readDouble();
this.lon = parcel.readDouble();
}
Expand Down

0 comments on commit 4a08500

Please sign in to comment.