mirror of
https://github.com/ClemensFischer/XAML-Map-Control.git
synced 2026-04-08 07:55:13 +00:00
Code style
This commit is contained in:
parent
b023bf9491
commit
799ad01447
3 changed files with 11 additions and 9 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue