- Timestamp:
- 2018-09-21T21:53:17+02:00 (7 years ago)
- Location:
- trunk/src/org/openstreetmap/josm/io
- Files:
-
- 2 edited
-
OsmChangeReader.java (modified) (1 diff)
-
OsmReader.java (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/io/OsmChangeReader.java
r14101 r14266 113 113 case "comment": 114 114 text = parser.getAttributeValue(null, "text"); 115 jumpToEnd(); 115 116 break; 116 117 default: -
trunk/src/org/openstreetmap/josm/io/OsmReader.java
r14219 r14266 366 366 * @throws XMLStreamException if there is an error processing the underlying XML source 367 367 */ 368 pr ivatevoid jumpToEnd(boolean printWarning) throws XMLStreamException {368 protected final void jumpToEnd(boolean printWarning) throws XMLStreamException { 369 369 while (true) { 370 370 int event = parser.next(); … … 376 376 } 377 377 378 pr ivatevoid jumpToEnd() throws XMLStreamException {378 protected final void jumpToEnd() throws XMLStreamException { 379 379 jumpToEnd(true); 380 380 }
Note:
See TracChangeset
for help on using the changeset viewer.
