Fix compilation error
This commit is contained in:
parent
cbbea56cf0
commit
a18a346788
2 changed files with 2 additions and 2 deletions
|
@ -559,7 +559,7 @@ public class FirstUsageWizardFragment extends BaseOsmAndFragment implements OsmA
|
|||
|
||||
List<BinaryMapDataObject> mapDataObjects = null;
|
||||
try {
|
||||
mapDataObjects = osmandRegions.queryBbox(point31x, point31x, point31y, point31y);
|
||||
mapDataObjects = osmandRegions.query(point31x, point31x, point31y, point31y);
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
|
|
@ -953,7 +953,7 @@ public abstract class MenuController extends BaseMenuController implements Colla
|
|||
|
||||
List<BinaryMapDataObject> mapDataObjects = null;
|
||||
try {
|
||||
mapDataObjects = osmandRegions.queryBbox(point31x, point31x, point31y, point31y);
|
||||
mapDataObjects = osmandRegions.query(point31x, point31x, point31y, point31y);
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue