Ignore:
Timestamp:
08.09.2009 22:56:02 (3 years ago)
Author:
Gubaer
Message:

fixed #3393: loooong delay when using presets with a large osm file - further improvement; next step could be to turn UploadHooks into an asynchronous task; ApiPreconditionChecker loops over all keys in all upload primitives!
fixed #3435: Switching the changeset type deletes any changeset tags that have been set
fixed #3430: Entering comment=* manually in the changeset tags dialog gets ignored
fixed #3431: Upload dialog pops up again if no comment is provided
fixed #3429: created_by=* includes the wrong language when uploading from a new layer

File:
1 edited

Legend:

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

    r2070 r2081  
    33 
    44import static org.openstreetmap.josm.tools.I18n.tr; 
     5 
     6import javax.print.attribute.standard.MediaSize.Other; 
    57 
    68import org.openstreetmap.josm.data.osm.visitor.Visitor; 
     
    2325     */ 
    2426    public String start_timestamp = null; 
     27 
     28    public Changeset() { 
     29        super(0); 
     30    } 
     31 
     32    public Changeset(long id) { 
     33        super(id); 
     34    } 
     35 
     36    public Changeset(Changeset clone){ 
     37        super(clone.getId()); 
     38        cloneFrom(clone); 
     39    } 
    2540 
    2641    @Override 
     
    4964        return formatter.format(this); 
    5065    } 
     66 
     67 
     68    @Override public void cloneFrom(OsmPrimitive osm) { 
     69        super.cloneFrom(osm); 
     70    } 
    5171} 
Note: See TracChangeset for help on using the changeset viewer.