File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Scripts/Services/AlchemyAPI Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -57,12 +57,12 @@ public bool HasGeographicInformation
57
57
}
58
58
}
59
59
60
- private PositionOnMap _GeoLocation = null ;
60
+ private PositionOnMap m_GeoLocation = null ;
61
61
public PositionOnMap GeoLocation
62
62
{
63
63
get
64
64
{
65
- if ( _GeoLocation == null )
65
+ if ( m_GeoLocation == null )
66
66
{
67
67
string geoString = null ;
68
68
for ( int i = 0 ; entities != null && i < entities . Length ; i ++ )
@@ -80,15 +80,15 @@ public PositionOnMap GeoLocation
80
80
81
81
if ( double . TryParse ( geoValues [ 0 ] , out latitute ) && double . TryParse ( geoValues [ 1 ] , out longitutde ) )
82
82
{
83
- _GeoLocation = new PositionOnMap ( latitute , longitutde , entities [ i ] . disambiguated . name ) ;
83
+ m_GeoLocation = new PositionOnMap ( latitute , longitutde , entities [ i ] . disambiguated . name ) ;
84
84
break ;
85
85
}
86
86
}
87
87
}
88
88
}
89
89
}
90
90
}
91
- return _GeoLocation ;
91
+ return m_GeoLocation ;
92
92
}
93
93
}
94
94
You can’t perform that action at this time.
0 commit comments