Ignore:
Timestamp:
04.02.2010 21:04:02 (2 years ago)
Author:
jttt
Message:

Fixed #4408 confict manager: do not have to solve tag- and element-conficts when deleting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/data/osm/history/HistoryDataSet.java

    r2871 r2936  
    5454    } 
    5555 
    56     protected void fireHistoryUpdated(SimplePrimitiveId id) { 
     56    protected void fireHistoryUpdated(PrimitiveId id) { 
    5757        for (HistoryDataSetListener l : listeners) { 
    5858            l.historyUpdated(this, id); 
     
    9494     */ 
    9595    public void put(HistoryOsmPrimitive primitive) { 
    96         SimplePrimitiveId id = new SimplePrimitiveId(primitive.getId(), primitive.getType()); 
     96        PrimitiveId id = new SimplePrimitiveId(primitive.getId(), primitive.getType()); 
    9797        if (data.get(id) == null) { 
    9898            data.put(id, new ArrayList<HistoryOsmPrimitive>()); 
Note: See TracChangeset for help on using the changeset viewer.