Changeset 2171 in josm for trunk/src/org/openstreetmap/josm/io
- Timestamp:
- 2009-09-20T14:09:52+02:00 (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmApi.java
r2165 r2171 594 594 protected void ensureValidChangeset() throws OsmTransferException { 595 595 if (changeset == null) 596 throw new OsmTransferException(tr(" current changeset is null. Can't upload data."));596 throw new OsmTransferException(tr("Current changeset is null. Can't upload data.")); 597 597 if (changeset.getId() <= 0) 598 throw new OsmTransferException(tr("id of current changeset > required. Current id is {0}", changeset.getId())); 598 throw new OsmTransferException(tr("id of current changeset > 0 required. Current id is {0}", changeset.getId())); 599 599 } 600 600 /**
Note:
See TracChangeset
for help on using the changeset viewer.