Skip to content

Commit

Permalink
Added Location Detector Class
Browse files Browse the repository at this point in the history
  • Loading branch information
platico committed May 11, 2016
1 parent 50a3347 commit 4f2b935
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/analytics/AnalyticsExtractor.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Class to produce the analytics
* Created by sifantid on 5/5/2016.
*/
public class AnalyticsExtractor {
public class AnalyticsExtractor {
private static MongoConnector mc;

/**
Expand Down
3 changes: 3 additions & 0 deletions src/combiner/Combiner.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import analytics.AnalyticsExtractor;
import analytics.FrequencyCounter;
import analytics.LocationDetector;
import org.json.JSONException;
import twitter.main.TwitterExporter;
import youtube.YoutubeExporter;
Expand All @@ -25,6 +26,7 @@ public class Combiner {
*/
public static void main(String[] args) throws JSONException, IOException {


if(args != null) {
// Collect Youtube comments and insert them to DB
YoutubeExporter.main(args);
Expand All @@ -43,5 +45,6 @@ public static void main(String[] args) throws JSONException, IOException {
analyticsExtractor.analyze();
}
}

}
}

0 comments on commit 4f2b935

Please sign in to comment.