Skip to content

Commit

Permalink
Added Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
MG-ng committed Mar 19, 2020
1 parent 0671e84 commit e008bc5
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,11 @@ public boolean onTouch( View v, MotionEvent event ) {
};


/**
* Extracts the location of a line of csv got from the github repo by johns hopkins
* @param line contains csv, ex. lat, lng, deaths, recovers, confirmed, etc…
* @return the location
*/
public static String extractLocation( String line ) {
String country = "";
if( line.startsWith( "\"" ) )
Expand Down

0 comments on commit e008bc5

Please sign in to comment.