- Timestamp:
- 2025-07-10T19:32:15+02:00 (5 days ago)
- Location:
- trunk/src/org/openstreetmap/josm
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/org/openstreetmap/josm/gui/history/CoordinateInfoViewer.java
r19421 r19422 450 450 public void actionPerformed(ActionEvent e) { 451 451 OsmPrimitive primitive = getPrimitiveFromDataSet(PointInTimeType.REFERENCE_POINT_IN_TIME); 452 if (!(primitive instanceof Node) || ((Node)primitive).getEastNorth() == null) { 452 if (!(primitive instanceof Node) || ((Node) primitive).getEastNorth() == null) { 453 453 return; 454 454 } -
trunk/src/org/openstreetmap/josm/io/OsmApiException.java
r19420 r19422 196 196 if (!eb.isEmpty() && !eb.equals(eh)) { 197 197 sb.append(", Error Body=<") 198 .append(eb.replaceAll("<[^>]+>","")) 198 .append(eb.replaceAll("<[^>]+>", "")) 199 199 .append('>'); 200 200 }
Note:
See TracChangeset
for help on using the changeset viewer.