Skip to content

Commit 5b98c74

Browse files
committed
Merge branch 'robrich-develop' into develop
2 parents 0891445 + d37f395 commit 5b98c74

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/Nest/Domain/Geo/GeoLocation.cs

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,12 @@
11
using System;
2-
using System.Collections.Generic;
32
using System.Globalization;
4-
using System.Linq;
5-
using System.Text;
63

74
/*
85
* Taken from SolrNet https://github.com/mausch/SolrNet/blob/master/SolrNet/Location.cs
96
*/
107

118
namespace Nest
129
{
13-
1410
/// <summary>
1511
/// Represents a Latitude/Longitude as a 2 dimensional point.
1612
/// </summary>
@@ -25,7 +21,7 @@ public class GeoLocation : IEquatable<GeoLocation>, IFormattable
2521
/// <summary>
2622
/// Longitude
2723
/// </summary>
28-
public double Longtitude { get { return _longitude; } }
24+
public double Longitude { get { return _longitude; } }
2925
private readonly double _longitude;
3026

3127
/// <summary>
@@ -118,4 +114,4 @@ public string ToString(string format, IFormatProvider formatProvider)
118114
return ToString();
119115
}
120116
}
121-
}
117+
}

0 commit comments

Comments
 (0)