Changeset 15225 in josm


Ignore:
Timestamp:
2019-07-07T16:55:06+02:00 (5 years ago)
Author:
Don-vip
Message:

see #17848 - update hashCode/equals methods

File:
1 edited

Legend:

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

    r15219 r15225  
    430430        return Objects.hash(height, width, isNewGpsData,
    431431            elevation, exifCoor, exifGpsTime, exifImgDir, exifOrientation, exifTime,
     432            iptcCaption, iptcHeadline, iptcKeywords, iptcObjectName,
    432433            file, gpsTime, pos, speed, tmp);
    433434    }
     
    449450            && Objects.equals(exifOrientation, other.exifOrientation)
    450451            && Objects.equals(exifTime, other.exifTime)
     452            && Objects.equals(iptcCaption, other.iptcCaption)
     453            && Objects.equals(iptcHeadline, other.iptcHeadline)
     454            && Objects.equals(iptcKeywords, other.iptcKeywords)
     455            && Objects.equals(iptcObjectName, other.iptcObjectName)
    451456            && Objects.equals(file, other.file)
    452457            && Objects.equals(gpsTime, other.gpsTime)
Note: See TracChangeset for help on using the changeset viewer.