Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Fix javadoc comment for public setOfflineMapboxTileCountLimit method #9454

Merged
merged 1 commit into from
Jul 9, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -236,10 +236,11 @@ private boolean isValidOfflineRegionDefinition(OfflineRegionDefinition definitio
return LatLngBounds.world().contains(definition.getBounds());
}

/*
* Changing or bypassing this limit without permission from Mapbox is prohibited
* by the Mapbox Terms of Service.
*/
/**
* Changing or bypassing this limit without permission from Mapbox is prohibited
* by the Mapbox Terms of Service.
* @param limit the new tile count limit.
*/
public native void setOfflineMapboxTileCountLimit(long limit);

private native void initialize(FileSource fileSource);
Expand Down