Code style

This commit is contained in:
ClemensFischer 2025-11-20 23:53:08 +01:00
parent b023bf9491
commit 799ad01447
3 changed files with 11 additions and 9 deletions

View file

@ -32,9 +32,9 @@ namespace MapControl
public bool Equals(Location location)
{
return location != null
&& Math.Abs(location.Latitude - Latitude) < 1e-9
&& Math.Abs(location.Longitude - Longitude) < 1e-9;
return location != null &&
Math.Abs(location.Latitude - Latitude) < 1e-9 &&
Math.Abs(location.Longitude - Longitude) < 1e-9;
}
public override bool Equals(object obj)