Skip to content

Commit caa6490

Browse files
author
Dogukan Erenel
committed
* Minor change on naming on DataModels
1 parent 3de8e50 commit caa6490

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Scripts/Services/AlchemyAPI/DataModels.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,12 +57,12 @@ public bool HasGeographicInformation
5757
}
5858
}
5959

60-
private PositionOnMap _GeoLocation = null;
60+
private PositionOnMap m_GeoLocation = null;
6161
public PositionOnMap GeoLocation
6262
{
6363
get
6464
{
65-
if (_GeoLocation == null)
65+
if (m_GeoLocation == null)
6666
{
6767
string geoString = null;
6868
for (int i = 0; entities != null && i < entities.Length; i++)
@@ -80,15 +80,15 @@ public PositionOnMap GeoLocation
8080

8181
if (double.TryParse(geoValues[0], out latitute) && double.TryParse(geoValues[1], out longitutde))
8282
{
83-
_GeoLocation = new PositionOnMap(latitute, longitutde, entities[i].disambiguated.name);
83+
m_GeoLocation = new PositionOnMap(latitute, longitutde, entities[i].disambiguated.name);
8484
break;
8585
}
8686
}
8787
}
8888
}
8989
}
9090
}
91-
return _GeoLocation;
91+
return m_GeoLocation;
9292
}
9393
}
9494

0 commit comments

Comments
 (0)