Comment out gpsCoords string

This commit is contained in:
misaochan 2016-08-22 18:26:09 +12:00
parent 1530ddc969
commit 2eef7037f9

View file

@ -21,7 +21,7 @@ public class NearbyActivity extends AppCompatActivity {
private Criteria criteria; private Criteria criteria;
private double currentLatitude, currentLongitude; private double currentLatitude, currentLongitude;
private String gpsCoords; //private String gpsCoords;
private static final String TAG = "NearbyActivity"; private static final String TAG = "NearbyActivity";
@ -40,7 +40,7 @@ public class NearbyActivity extends AppCompatActivity {
registerLocationManager(); registerLocationManager();
//TODO: Check if we need String or double coords, and in what format //TODO: Check if we need String or double coords, and in what format
gpsCoords = String.valueOf(currentLatitude) + "|" + String.valueOf(currentLongitude); //gpsCoords = String.valueOf(currentLatitude) + "|" + String.valueOf(currentLongitude);
} }