Changeset 1911 in josm for trunk/src/org/openstreetmap/josm/data/conflict
- Timestamp:
- 2009-08-05T10:05:50+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/data/conflict/Conflict.java
r1750 r1911 51 51 } 52 52 53 @SuppressWarnings("unchecked") 53 54 @Override 54 55 public boolean equals(Object obj) { … … 59 60 if (getClass() != obj.getClass()) 60 61 return false; 61 Conflict<T> other = (Conflict) obj; 62 Conflict<T> other = (Conflict<T>) obj; 62 63 if (my != other.my) 63 64 return false;
Note:
See TracChangeset
for help on using the changeset viewer.