Skip to content

Commit b950265

Browse files
Update MainActivity.java
1 parent d95f91c commit b950265

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

app/src/main/java/spartons/com/frisbee/activities/main/ui/MainActivity.java

+1-4
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,7 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
9393
viewModel.reverseGeocodeResult
9494
.observe(this, placeName -> currentPlaceTextView.setText(placeName));
9595
viewModel.currentLocation
96-
.observe(this, __ -> {
97-
Location location = new Location("");
98-
location.setLatitude(37.422);
99-
location.setLongitude(-122.084);
96+
.observe(this, location -> {
10097
if (firstTimeFlag) {
10198
firstTimeFlag = false;
10299
animateCamera(location);

0 commit comments

Comments
 (0)