Ticket #2021: OsmReader.diff
File OsmReader.diff, 1.1 KB (added by , 16 years ago) |
---|
-
src/org/openstreetmap/josm/io/OsmReader.java
272 272 current.timestamp = DateParser.parse(time); 273 273 } catch (ParseException e) { 274 274 e.printStackTrace(); 275 throw new SAXException(tr("Couldn' t read time format \"{0}\".",time));275 throw new SAXException(tr("Couldn''t read time format \"{0}\".",time)); 276 276 } 277 277 */ 278 278 current.timestamp = time; … … 343 343 for (long id : e.getValue()) { 344 344 Node n = findNode(id); 345 345 if (n == null) { 346 parseNotes += tr("Skipping a way because it includes a node that doesn' t exist: {0}\n", id);346 parseNotes += tr("Skipping a way because it includes a node that doesn''t exist: {0}\n", id); 347 347 failed = true; 348 348 break; 349 349 }