Skip to content
This repository was archived by the owner on Dec 29, 2022. It is now read-only.
2 changes: 1 addition & 1 deletion src/main/java/com/firebase/geofire/GeoFire.java
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public void onCancelled(DatabaseError databaseError) {
}
}

static GeoLocation getLocationValue(DataSnapshot dataSnapshot) {
public static GeoLocation getLocationValue(DataSnapshot dataSnapshot) {
try {
GenericTypeIndicator<Map<String, Object>> typeIndicator = new GenericTypeIndicator<Map<String, Object>>() {};
Map<String, Object> data = dataSnapshot.getValue(typeIndicator);
Expand Down