Skip to content

Commit

Permalink
feature: i can read error messages!
Browse files Browse the repository at this point in the history
  • Loading branch information
RLittlesII committed Jan 6, 2024
1 parent 25e75c8 commit 2c386d2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Core/Locations/Events/VisitedEvent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ public class VisitedEvent
/// <param name="arrivalDate">The arrival date.</param>
/// <param name="departureDate">The departure date.</param>
/// <param name="horizontalAccuracy">The accuracy.</param>
public VisitedEvent(GeoLocation location, DateTimeOffset arrivalDate, DateTimeOffset departureDate, double horizontalAccuracy)
public VisitedEvent(GeoCoordinate location, DateTimeOffset arrivalDate, DateTimeOffset departureDate, double horizontalAccuracy)

Check warning on line 17 in src/Core/Locations/Events/VisitedEvent.cs

View check run for this annotation

Codecov / codecov/patch

src/Core/Locations/Events/VisitedEvent.cs#L17

Added line #L17 was not covered by tests
{
GeoLocation = location;
Location = location;

Check warning on line 19 in src/Core/Locations/Events/VisitedEvent.cs

View check run for this annotation

Codecov / codecov/patch

src/Core/Locations/Events/VisitedEvent.cs#L19

Added line #L19 was not covered by tests
ArrivalDate = arrivalDate;
DepartureDate = departureDate;
HorizontalAccuracy = horizontalAccuracy;
Expand All @@ -30,7 +30,7 @@ public VisitedEvent(GeoLocation location, DateTimeOffset arrivalDate, DateTimeOf
/// <summary>
/// Gets the geo location.
/// </summary>
public GeoLocation GeoLocation { get; }
public GeoCoordinate Location { get; }

/// <summary>
/// Gets the departure date.
Expand Down

0 comments on commit 2c386d2

Please sign in to comment.