Changeset 11085 in josm
- Timestamp:
- 2016-10-06T23:22:21+02:00 (9 years ago)
- Location:
- trunk
- Files:
-
- 3 added
- 2 edited
-
src/org/openstreetmap/josm/data/correction/TagCorrection.java (modified) (1 diff)
-
src/org/openstreetmap/josm/gui/MapStatus.java (modified) (1 diff)
-
test/unit/org/openstreetmap/josm/data/correction (added)
-
test/unit/org/openstreetmap/josm/data/correction/TagCorrectionTest.java (added)
-
test/unit/org/openstreetmap/josm/gui/MapStatusTest.java (added)
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 Objects.equals(newKey, that.newKey) &&59 Objects.equals(oldValue, that.oldValue) &&60 Objects.equals(newValue, that.newValue);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 ivatestatic class 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.
