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
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
You can’t perform that action at this time.
0 commit comments