Changeset 11085 in josm
- Timestamp:
- 2016-10-06T23:22:21+02:00 (8 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/correction/TagCorrection.java
r11061 r11085 53 53 public boolean equals(Object o) { 54 54 if (this == o) return true; 55 if (!(o instanceof TagCorrection)) return false; 55 if (o == null || getClass() != o.getClass()) 56 return false; 56 57 TagCorrection that = (TagCorrection) o; 57 58 return Objects.equals(oldKey, that.oldKey) && 58 59 60 59 Objects.equals(newKey, that.newKey) && 60 Objects.equals(oldValue, that.oldValue) && 61 Objects.equals(newValue, that.newValue); 61 62 } 62 63 -
trunk/src/org/openstreetmap/josm/gui/MapStatus.java
r10824 r11085 221 221 private final transient List<StatusTextHistory> statusText = new ArrayList<>(); 222 222 223 pr ivate staticclass StatusTextHistory {223 protected static final class StatusTextHistory { 224 224 private final Object id; 225 225 private final String text;
Note:
See TracChangeset
for help on using the changeset viewer.