Skip to content

Commit

Permalink
fix #23718: Console messages: WARNING: Not downloading all tiles beca…
Browse files Browse the repository at this point in the history
…use there is more than 40 tiles on an axis!

Correct syntax "there is more than" -> "there are more than"


git-svn-id: https://josm.openstreetmap.de/svn/trunk@19280 0c6e7542-c601-0410-84e7-c038aed88b3b
  • Loading branch information
GerdP authored and GerdP committed Jan 10, 2025
1 parent 238092b commit 1ebc7dd
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1332,7 +1332,7 @@ private void loadAllTiles(boolean force) {
}
if (tooLarge()) {
// Too many tiles... refuse to download
Logging.warn("Not downloading all tiles because there is more than {0} tiles on an axis!", MAX_TILES_SPANNED);
Logging.warn("Not downloading all tiles because there are more than {0} tiles on an axis!", MAX_TILES_SPANNED);
return;
}
List<Tile> allTiles = allTilesCreate();
Expand Down

0 comments on commit 1ebc7dd

Please sign in to comment.