Ignore:
Timestamp:
2009-08-05T10:05:50+02:00 (15 years ago)
Author:
Gubaer
Message:

fixed #3193: No layer is left highlighted when the bottom most one is deleted
fixed some references to Way.nodes
clean up of warnings
added documentation in LayerListDialog

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/conflict/Conflict.java

    r1750 r1911  
    5151    }
    5252
     53    @SuppressWarnings("unchecked")
    5354    @Override
    5455    public boolean equals(Object obj) {
     
    5960        if (getClass() != obj.getClass())
    6061            return false;
    61         Conflict<T> other = (Conflict) obj;
     62        Conflict<T> other = (Conflict<T>) obj;
    6263        if (my != other.my)
    6364            return false;
Note: See TracChangeset for help on using the changeset viewer.