- Timestamp:
- 2009-05-12T16:49:45+02:00 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmWriter.java
r1524 r1587 24 24 public class OsmWriter extends XmlWriter implements Visitor { 25 25 26 public final String DEFAULT_API_VERSION = "0.6"; 27 26 28 /** 27 29 * The counter for newly created objects. Starts at -1 and goes down. … … 43 45 super(out); 44 46 this.osmConform = osmConform; 45 this.version = version;47 this.version = (version == null ? DEFAULT_API_VERSION : version); 46 48 } 47 49
Note:
See TracChangeset
for help on using the changeset viewer.