Changeset 18050 in josm for trunk/src


Ignore:
Timestamp:
2021-07-17T17:16:14+02:00 (4 years ago)
Author:
Don-vip
Message:

see #17606 - see #21126 - fixes

Location:
trunk/src/org/openstreetmap/josm/data
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/ImageData.java

    r18049 r18050  
    317317     * @param img the {@link ImageEntry} to remove
    318318     * @param fireUpdateEvent if {@code true}, notifies listeners of image update
    319      * @since xxx
     319     * @since 18049
    320320     */
    321321    public void removeImage(ImageEntry img, boolean fireUpdateEvent) {
  • trunk/src/org/openstreetmap/josm/data/osm/OsmUtils.java

    r15951 r18050  
    169169                : null;
    170170        if (p == null) {
    171             throw new IllegalArgumentException("Expecting n/node/w/way/r/relation/area, but got '" + x[0] + '\'');
     171            throw new IllegalArgumentException(
     172                    "Expecting n/node/w/way/r/relation/area, but got '" + x[0] + "' for assertion '" + assertion + '\'');
    172173        }
    173174        if (x.length > 1) {
Note: See TracChangeset for help on using the changeset viewer.