Changeset 19280 in josm


Ignore:
Timestamp:
2025-01-10T07:32:29+01:00 (7 hours ago)
Author:
GerdP
Message:

fix #23718: Console messages: WARNING: Not downloading all tiles because there is more than 40 tiles on an axis!
Correct syntax "there is more than" -> "there are more than"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/gui/layer/AbstractTileSourceLayer.java

    r19192 r19280  
    13331333            if (tooLarge()) {
    13341334                // Too many tiles... refuse to download
    1335                 Logging.warn("Not downloading all tiles because there is more than {0} tiles on an axis!", MAX_TILES_SPANNED);
     1335                Logging.warn("Not downloading all tiles because there are more than {0} tiles on an axis!", MAX_TILES_SPANNED);
    13361336                return;
    13371337            }
Note: See TracChangeset for help on using the changeset viewer.