Hello Ottomata,

I'd like you to do a code review.  Please visit

    https://gerrit.wikimedia.org/r/188011

to review the following change.

Change subject: Fix casing of variable name in Geocoding
......................................................................

Fix casing of variable name in Geocoding

Change-Id: Ibac451d1685bf279cab4ad44ee36b30ef06b0630
---
M refinery-core/src/main/java/org/wikimedia/analytics/refinery/core/Geocode.java
1 file changed, 3 insertions(+), 3 deletions(-)


  git pull ssh://gerrit.wikimedia.org:29418/analytics/refinery/source 
refs/changes/11/188011/1

diff --git 
a/refinery-core/src/main/java/org/wikimedia/analytics/refinery/core/Geocode.java
 
b/refinery-core/src/main/java/org/wikimedia/analytics/refinery/core/Geocode.java
index abf7939..6dccf0d 100644
--- 
a/refinery-core/src/main/java/org/wikimedia/analytics/refinery/core/Geocode.java
+++ 
b/refinery-core/src/main/java/org/wikimedia/analytics/refinery/core/Geocode.java
@@ -60,13 +60,13 @@
         String defaultCountryDatabasePath = 
"/usr/share/GeoIP/GeoIP2-Country.mmdb";
         String defaultCityDatabasePath = "/usr/share/GeoIP/GeoIP2-City.mmdb";
 
-        String countryDatabasepath = 
System.getProperty("maxmind.database.country", defaultCountryDatabasePath);
+        String countryDatabasePath = 
System.getProperty("maxmind.database.country", defaultCountryDatabasePath);
         String cityDatabasePath = System.getProperty("maxmind.database.city", 
defaultCityDatabasePath);
 
-        LOG.info("Country Database: " + countryDatabasepath);
+        LOG.info("Country Database: " + countryDatabasePath);
         LOG.info("City database: " + cityDatabasePath);
 
-        countryDatabaseReader = new DatabaseReader.Builder(new 
File(countryDatabasepath)).build();
+        countryDatabaseReader = new DatabaseReader.Builder(new 
File(countryDatabasePath)).build();
         cityDatabaseReader = new DatabaseReader.Builder(new 
File(cityDatabasePath)).build();
     }
 

-- 
To view, visit https://gerrit.wikimedia.org/r/188011
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings

Gerrit-MessageType: newchange
Gerrit-Change-Id: Ibac451d1685bf279cab4ad44ee36b30ef06b0630
Gerrit-PatchSet: 1
Gerrit-Project: analytics/refinery/source
Gerrit-Branch: master
Gerrit-Owner: QChris <[email protected]>
Gerrit-Reviewer: Ottomata <[email protected]>

_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits

Reply via email to