Ignore:
Timestamp:
27.10.2009 01:21:32 (3 years ago)
Author:
Gubaer
Message:

Cleanup in download logic (less global, more encapsulation)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/org/openstreetmap/josm/io/OsmWriter.java

    r2291 r2327  
    9393        for (DataSource s : ds.dataSources) { 
    9494            out.println("  <bounds minlat='" 
    95                     + s.bounds.min.lat()+"' minlon='" 
    96                     + s.bounds.min.lon()+"' maxlat='" 
    97                     + s.bounds.max.lat()+"' maxlon='" 
    98                     + s.bounds.max.lon() 
     95                    + s.bounds.getMin().lat()+"' minlon='" 
     96                    + s.bounds.getMin().lon()+"' maxlat='" 
     97                    + s.bounds.getMax().lat()+"' maxlon='" 
     98                    + s.bounds.getMax().lon() 
    9999                    +"' origin='"+XmlWriter.encode(s.origin)+"' />"); 
    100100        } 
Note: See TracChangeset for help on using the changeset viewer.