Update WayPoint.java

Minor typo correction.
This commit is contained in:
Andrew Manning 2018-05-29 21:35:09 -04:00 committed by GitHub
parent ecc39a2502
commit 01b1f0ce45
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@ public class WayPoint implements Parcelable {
}; };
/* Getter for mIsStopOver */ /* Getter for mLocation */
public Location getLocation() { public Location getLocation() {
return mLocation; return mLocation;
} }
@ -121,4 +121,4 @@ public class WayPoint implements Parcelable {
parcel.writeFloat(mDistanceToStartingPoint); parcel.writeFloat(mDistanceToStartingPoint);
parcel.writeInt(mNumberSatellites); parcel.writeInt(mNumberSatellites);
} }
} }