Ignore:
Timestamp:
2019-01-01T02:07:01+01:00 (5 years ago)
Author:
Don-vip
Message:

add copy constructor, needed for plugins

File:
1 edited

Legend:

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

    r14212 r14625  
    2121     */
    2222    public ImageEntry() {
     23    }
     24
     25    /**
     26     * Constructs a new {@code ImageEntry} from an existing instance.
     27     * @param other existing instance
     28     * @since 14625
     29     */
     30    public ImageEntry(ImageEntry other) {
     31        super(other);
     32        thumbnail = other.thumbnail;
    2333    }
    2434
Note: See TracChangeset for help on using the changeset viewer.