Reduce visibility of internal legality enum

This commit is contained in:
Kurt 2020-08-30 15:48:34 -07:00
parent 75da70069c
commit c146e9402f

View file

@ -90,7 +90,9 @@
}
}
public static GeoValid GetValidity(this IGeoTrack g)
public static bool GetIsValid(this IGeoTrack g) => g.GetValidity() == GeoValid.Valid;
internal static GeoValid GetValidity(this IGeoTrack g)
{
bool end = false;
GeoValid result;
@ -121,7 +123,7 @@
}
}
public enum GeoValid
internal enum GeoValid
{
Valid,
CountryAfterPreviousEmpty,