Ignore:
Timestamp:
03.02.2010 22:53:24 (2 years ago)
Author:
mjulius
Message:

bring PrimitiveData.getId() in line with OsmPrimitive.getId()
remove OsmReader.OsmPrimitiveData and use PrimitiveData instead

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/command/Command.java

    r2844 r2932  
    11//License: GPL. Copyright 2007 by Immanuel Scholz and others 
    22package org.openstreetmap.josm.command; 
    3  
    4 import static org.openstreetmap.josm.tools.I18n.tr; 
    53 
    64import java.util.Collection; 
     
    125123            PrimitiveData to = cloneMap.get(t); 
    126124            Main.debug("now: " + t.getId() + " hashCode: " + t.hashCode()); 
    127             Main.debug("orig: " + to.getId() + " hashCode: " + to.hashCode()); 
     125            Main.debug("orig: " + to.getUniqueId() + " hashCode: " + to.hashCode()); 
    128126        } 
    129127        return o; 
Note: See TracChangeset for help on using the changeset viewer.